Package org.openwms.common.comm.osip.err
Class ErrorMessageConfiguration
java.lang.Object
org.openwms.common.comm.osip.err.ErrorMessageConfiguration
A ErrorMessageConfiguration is the JavaConfig for the
ErrorMessage
handling
part.- Author:
- Heiko Scherrer
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription(package private) org.springframework.amqp.core.Binding
errBinding
(org.springframework.amqp.core.TopicExchange errExchange, org.springframework.amqp.core.Queue errQueue, String routingKey) (package private) org.springframework.amqp.core.TopicExchange
errExchange
(String exchangeName) (package private) org.springframework.amqp.core.Queue
org.springframework.messaging.MessageChannel
-
Constructor Details
-
ErrorMessageConfiguration
ErrorMessageConfiguration()
-
-
Method Details
-
getMessageChannel
@Bean(name="ERR_MessageInputChannel") public org.springframework.messaging.MessageChannel getMessageChannel() -
errExchange
@Profile("ASYNCHRONOUS") @Bean org.springframework.amqp.core.TopicExchange errExchange(@Value("${owms.driver.osip.err.exchange-name}") String exchangeName) -
errQueue
@Profile("ASYNCHRONOUS") @Bean org.springframework.amqp.core.Queue errQueue(@Value("${owms.driver.osip.err.queue-name}") String queueName) -
errBinding
@Profile("ASYNCHRONOUS") @Bean org.springframework.amqp.core.Binding errBinding(org.springframework.amqp.core.TopicExchange errExchange, org.springframework.amqp.core.Queue errQueue, @Value("${owms.driver.osip.err.routing-key-in}") String routingKey)
-