Class DefaultSAPRFCDestinationDao
- java.lang.Object
-
- de.hybris.platform.servicelayer.internal.dao.AbstractItemDao
-
- de.hybris.platform.sap.core.configuration.rfc.dao.impl.DefaultSAPRFCDestinationDao
-
- All Implemented Interfaces:
SAPRFCDestinationDao,Dao
public class DefaultSAPRFCDestinationDao extends AbstractItemDao implements SAPRFCDestinationDao
Default implementation of the DAO for SAP RFC Destinations.
-
-
Field Summary
-
Fields inherited from class de.hybris.platform.servicelayer.internal.dao.AbstractItemDao
flexibleSearchService, modelService
-
-
Constructor Summary
Constructors Constructor Description DefaultSAPRFCDestinationDao()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<SAPRFCDestinationModel>findRfcDestinationByName(java.lang.String destName)Find SAP RFC Destination by destination name.java.util.List<SAPRFCDestinationModel>findRfcDestinations()Return a list of RFC destination models that are currently persisted.-
Methods inherited from class de.hybris.platform.servicelayer.internal.dao.AbstractItemDao
getAllSources, getFlexibleSearchService, getModelService, getSource, load, loadAll, search, search, searchUnique, setFlexibleSearchService, setModelService
-
-
-
-
Method Detail
-
findRfcDestinations
public java.util.List<SAPRFCDestinationModel> findRfcDestinations()
Description copied from interface:SAPRFCDestinationDaoReturn a list of RFC destination models that are currently persisted. If none are found an empty list is returned.- Specified by:
findRfcDestinationsin interfaceSAPRFCDestinationDao- Returns:
- all RFC destinations of system
-
findRfcDestinationByName
public java.util.List<SAPRFCDestinationModel> findRfcDestinationByName(java.lang.String destName)
Description copied from interface:SAPRFCDestinationDaoFind SAP RFC Destination by destination name.- Specified by:
findRfcDestinationByNamein interfaceSAPRFCDestinationDao- Parameters:
destName- RFC destination name- Returns:
- All RFC destinations for the given destination name.
-
-