Interface SAPHttpDestinationDao
-
- All Superinterfaces:
Dao
- All Known Implementing Classes:
DefaultSAPHTTPDestinationDao
public interface SAPHttpDestinationDao extends Dao
Data access object for SAP HTTP Destination.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<SAPHTTPDestinationModel>findHttpDestinations()Return a list of Http destination models that are currently persisted.java.util.List<SAPHTTPDestinationModel>findHttpDestinationsByName(java.lang.String destinationName)Finds all Http destinatio with given name.
-
-
-
Method Detail
-
findHttpDestinations
java.util.List<SAPHTTPDestinationModel> findHttpDestinations()
Return a list of Http destination models that are currently persisted. If none are found an empty list is returned.- Returns:
- all Http destinations of system
-
findHttpDestinationsByName
java.util.List<SAPHTTPDestinationModel> findHttpDestinationsByName(java.lang.String destinationName)
Finds all Http destinatio with given name. If none is found, an empty list will be returned.- Parameters:
destinationName- the name to search for HTTP destinations- Returns:
- All HTTP destinations with the given name.
-
-