Interface InboundChannelConfigurationService
-
- All Known Implementing Classes:
DefaultInboundChannelConfigurationService
public interface InboundChannelConfigurationServiceProvides methods to interact with Inbound Channel Configuration.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Optional<InboundChannelConfigurationModel>findInboundChannelConfigurationByIntegrationObject(IntegrationObjectModel integrationObject)Searches inbound channel configuration by an integration object
-
-
-
Method Detail
-
findInboundChannelConfigurationByIntegrationObject
java.util.Optional<InboundChannelConfigurationModel> findInboundChannelConfigurationByIntegrationObject(IntegrationObjectModel integrationObject)
Searches inbound channel configuration by an integration object- 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.
-
-