Interface SAPConfigurationService
-
- All Superinterfaces:
ConfigurationPropertyAccess
- All Known Subinterfaces:
ModuleConfigurationAccess
- All Known Implementing Classes:
DefaultSAPConfigurationService,ModuleConfigurationAccessImpl,SAPConfigurationServiceImpl
public interface SAPConfigurationService extends ConfigurationPropertyAccess
Interface to access the SAP runtime configuration.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetBackendType()Returns the SAP backend type (e.g.java.lang.ObjectgetBaseStoreProperty(java.lang.String property)Returns the value of the requested Base Store property.RFCDestinationgetRFCDestination()Returns the RFC destination.java.lang.StringgetSAPConfigurationName()Returns the SAP configuration name.booleanisBaseStoreActive()Checks if currently a Base Store is active.booleanisSAPConfigurationActive()Checks if currently an SAP configuration is active.-
Methods inherited from interface de.hybris.platform.sap.core.configuration.ConfigurationPropertyAccess
getAllProperties, getAllPropertyAccessCollections, getAllPropertyAccesses, getProperty, getPropertyAccess, getPropertyAccessCollection
-
-
-
-
Method Detail
-
isSAPConfigurationActive
boolean isSAPConfigurationActive()
Checks if currently an SAP configuration is active.- Returns:
- true, if an SAP configuration is active
-
isBaseStoreActive
boolean isBaseStoreActive()
Checks if currently a Base Store is active.- Returns:
- true, if a Base Store is active
-
getSAPConfigurationName
java.lang.String getSAPConfigurationName()
Returns the SAP configuration name.- Returns:
- Name of the SAPConfiguration
-
getBaseStoreProperty
java.lang.Object getBaseStoreProperty(java.lang.String property)
Returns the value of the requested Base Store property.- Parameters:
property- Property name- Returns:
- Property value
-
getBackendType
java.lang.String getBackendType()
Returns the SAP backend type (e.g. ERP).- Returns:
- backend type
-
getRFCDestination
RFCDestination getRFCDestination()
Returns the RFC destination.- Returns:
- RFC destination
-
-