Interface SAPRFCDestinationDao
-
- All Superinterfaces:
Dao
- All Known Implementing Classes:
DefaultSAPRFCDestinationDao
public interface SAPRFCDestinationDao extends Dao
Data access object for SAP RFC Destination.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<SAPRFCDestinationModel>findRfcDestinationByName(java.lang.String rfcDestinationName)Find SAP RFC Destination by destination name.java.util.List<SAPRFCDestinationModel>findRfcDestinations()Return a list of RFC destination models that are currently persisted.
-
-
-
Method Detail
-
findRfcDestinations
java.util.List<SAPRFCDestinationModel> findRfcDestinations()
Return a list of RFC destination models that are currently persisted. If none are found an empty list is returned.- Returns:
- all RFC destinations of system
-
findRfcDestinationByName
java.util.List<SAPRFCDestinationModel> findRfcDestinationByName(java.lang.String rfcDestinationName)
Find SAP RFC Destination by destination name.- Parameters:
rfcDestinationName- RFC destination name- Returns:
- All RFC destinations for the given destination name.
-
-