Class DefaultInboundChannelConfigurationService
- java.lang.Object
-
- de.hybris.platform.inboundservices.service.impl.DefaultInboundChannelConfigurationService
-
- All Implemented Interfaces:
InboundChannelConfigurationService
public class DefaultInboundChannelConfigurationService extends java.lang.Object implements InboundChannelConfigurationService
Default implementation ofInboundChannelConfigurationService
-
-
Field Summary
Fields Modifier and Type Field Description protected static java.lang.StringGET_ICC_BY_INTEGRATION_OBJECT
-
Constructor Summary
Constructors Constructor Description DefaultInboundChannelConfigurationService(@NotNull FlexibleSearchService flexibleSearchService)Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Optional<InboundChannelConfigurationModel>findInboundChannelConfigurationByIntegrationObject(IntegrationObjectModel integrationObject)Searches inbound channel configuration by an integration object
-
-
-
Field Detail
-
GET_ICC_BY_INTEGRATION_OBJECT
protected static final java.lang.String GET_ICC_BY_INTEGRATION_OBJECT
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
DefaultInboundChannelConfigurationService
public DefaultInboundChannelConfigurationService(@NotNull @NotNull FlexibleSearchService flexibleSearchService)Constructor- Parameters:
flexibleSearchService- to search for the inbound channel configurationsInboundChannelConfigurationModel.
-
-
Method Detail
-
findInboundChannelConfigurationByIntegrationObject
public java.util.Optional<InboundChannelConfigurationModel> findInboundChannelConfigurationByIntegrationObject(IntegrationObjectModel integrationObject)
Description copied from interface:InboundChannelConfigurationServiceSearches inbound channel configuration by an integration object- Specified by:
findInboundChannelConfigurationByIntegrationObjectin interfaceInboundChannelConfigurationService- Parameters:
integrationObject- an integration object, for which the inbound channel configuration associated with it should be searchedIntegrationObjectModel- Returns:
- an Optional containing of inbound channel configuration
Optional<InboundChannelConfigurationModel>containing the inbound channel configuration corresponding to the provided integration object or anOptional.empty(), if the integration object is not associated with any inbound channel configuration.
-
-