Class IntegrationRegistrar
java.lang.Object
org.springframework.integration.config.IntegrationRegistrar
- All Implemented Interfaces:
ImportBeanDefinitionRegistrar
ImportBeanDefinitionRegistrar
implementation that configures integration infrastructure.- Since:
- 4.0
- Author:
- Artem Bilan, Gary Russell, Chris Bono
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
registerBeanDefinitions
(AnnotationMetadata importingClassMetadata, BeanDefinitionRegistry registry) Invoked by the framework when an @EnableIntegration annotation is encountered.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.springframework.context.annotation.ImportBeanDefinitionRegistrar
registerBeanDefinitions
-
Constructor Details
-
IntegrationRegistrar
public IntegrationRegistrar()
-
-
Method Details
-
registerBeanDefinitions
public void registerBeanDefinitions(@Nullable AnnotationMetadata importingClassMetadata, BeanDefinitionRegistry registry) Invoked by the framework when an @EnableIntegration annotation is encountered. Also called withnull
importingClassMetadata
fromAbstractIntegrationNamespaceHandler
to register the same beans when using XML configuration. Also called byAnnotationConfigParser
to register the messaging annotation post processors (for<int:annotation-config/>
).- Specified by:
registerBeanDefinitions
in interfaceImportBeanDefinitionRegistrar
-