Class DefaultSAPHTTPDestinationDao
- java.lang.Object
-
- de.hybris.platform.servicelayer.internal.dao.AbstractItemDao
-
- de.hybris.platform.sap.core.configuration.http.dao.impl.DefaultSAPHTTPDestinationDao
-
- All Implemented Interfaces:
SAPHttpDestinationDao,Dao
public class DefaultSAPHTTPDestinationDao extends AbstractItemDao implements SAPHttpDestinationDao
Default implementation of the DAO for SAP HTTP Destinations.
-
-
Field Summary
-
Fields inherited from class de.hybris.platform.servicelayer.internal.dao.AbstractItemDao
flexibleSearchService, modelService
-
-
Constructor Summary
Constructors Constructor Description DefaultSAPHTTPDestinationDao()
-
Method Summary
All Methods Instance Methods Concrete 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.-
Methods inherited from class de.hybris.platform.servicelayer.internal.dao.AbstractItemDao
getAllSources, getFlexibleSearchService, getModelService, getSource, load, loadAll, search, search, searchUnique, setFlexibleSearchService, setModelService
-
-
-
-
Method Detail
-
findHttpDestinations
public java.util.List<SAPHTTPDestinationModel> findHttpDestinations()
Description copied from interface:SAPHttpDestinationDaoReturn a list of Http destination models that are currently persisted. If none are found an empty list is returned.- Specified by:
findHttpDestinationsin interfaceSAPHttpDestinationDao- Returns:
- all Http destinations of system
-
findHttpDestinationsByName
public java.util.List<SAPHTTPDestinationModel> findHttpDestinationsByName(java.lang.String destinationName)
Description copied from interface:SAPHttpDestinationDaoFinds all Http destinatio with given name. If none is found, an empty list will be returned.- Specified by:
findHttpDestinationsByNamein interfaceSAPHttpDestinationDao- Parameters:
destinationName- the name to search for HTTP destinations- Returns:
- All HTTP destinations with the given name.
-
-