Class ErrorMessageConfiguration

java.lang.Object
org.openwms.common.comm.osip.err.ErrorMessageConfiguration

@OSIP @Configuration class ErrorMessageConfiguration extends Object
A ErrorMessageConfiguration is the JavaConfig for the ErrorMessage handling part.
Author:
Heiko Scherrer
  • 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)