Example usage for org.springframework.integration.config.annotation AggregatorAnnotationPostProcessor AggregatorAnnotationPostProcessor

List of usage examples for org.springframework.integration.config.annotation AggregatorAnnotationPostProcessor AggregatorAnnotationPostProcessor

Introduction

In this page you can find the example usage for org.springframework.integration.config.annotation AggregatorAnnotationPostProcessor AggregatorAnnotationPostProcessor.

Prototype

public AggregatorAnnotationPostProcessor(ConfigurableListableBeanFactory beanFactory) 

Source Link

Usage

From source file:org.springframework.integration.config.annotation.MessagingAnnotationPostProcessor.java

public void afterPropertiesSet() {
    Assert.notNull(this.beanFactory, "BeanFactory must not be null");
    postProcessors.put(Filter.class, new FilterAnnotationPostProcessor(this.beanFactory));
    postProcessors.put(Router.class, new RouterAnnotationPostProcessor(this.beanFactory));
    postProcessors.put(Transformer.class, new TransformerAnnotationPostProcessor(this.beanFactory));
    postProcessors.put(ServiceActivator.class, new ServiceActivatorAnnotationPostProcessor(this.beanFactory));
    postProcessors.put(Splitter.class, new SplitterAnnotationPostProcessor(this.beanFactory));
    postProcessors.put(Aggregator.class, new AggregatorAnnotationPostProcessor(this.beanFactory));
}