Class BridgeFromAnnotationPostProcessor
java.lang.Object
org.springframework.integration.config.annotation.AbstractMethodAnnotationPostProcessor<BridgeFrom>
org.springframework.integration.config.annotation.BridgeFromAnnotationPostProcessor
- All Implemented Interfaces:
MethodAnnotationPostProcessor<BridgeFrom>
public class BridgeFromAnnotationPostProcessor extends AbstractMethodAnnotationPostProcessor<BridgeFrom>
Post-processor for the
@BridgeFrom
annotation.- Since:
- 4.0
- Author:
- Artem Bilan
-
Field Summary
Fields inherited from class org.springframework.integration.config.annotation.AbstractMethodAnnotationPostProcessor
annotationType, beanFactory, channelResolver, conversionService, disposables, logger, messageHandlerAttributes, SEND_TIMEOUT_ATTRIBUTE
-
Constructor Summary
Constructors Constructor Description BridgeFromAnnotationPostProcessor(ConfigurableListableBeanFactory beanFactory)
-
Method Summary
Modifier and Type Method Description protected MessageHandler
createHandler(Object bean, Method method, List<Annotation> annotations)
Subclasses must implement this method to create the MessageHandler.protected String
getInputChannelAttribute()
protected Object
resolveTargetBeanFromMethodWithBeanAnnotation(Method method)
boolean
shouldCreateEndpoint(Method method, List<Annotation> annotations)
Methods inherited from class org.springframework.integration.config.annotation.AbstractMethodAnnotationPostProcessor
beanAnnotationAware, buildLambdaMessageProcessorForBeanMethod, checkMessageHandlerAttributes, configurePollingEndpoint, createEndpoint, doCreateEndpoint, extractAdviceChain, extractTypeIfPossible, generateHandlerBeanName, postProcess, resolveAttributeToBoolean, resolveTargetBeanName, setOutputChannelIfPresent
-
Constructor Details
-
Method Details
-
shouldCreateEndpoint
Description copied from interface:MethodAnnotationPostProcessor
- Specified by:
shouldCreateEndpoint
in interfaceMethodAnnotationPostProcessor<BridgeFrom>
- Overrides:
shouldCreateEndpoint
in classAbstractMethodAnnotationPostProcessor<BridgeFrom>
- Parameters:
method
- the method to check if it is eligible to create an Endpointannotations
- the List of annotations to process- Returns:
- the
boolean
flag to determine whether or not to create anAbstractEndpoint
-
getInputChannelAttribute
- Overrides:
getInputChannelAttribute
in classAbstractMethodAnnotationPostProcessor<BridgeFrom>
-
createHandler
Description copied from class:AbstractMethodAnnotationPostProcessor
Subclasses must implement this method to create the MessageHandler.- Specified by:
createHandler
in classAbstractMethodAnnotationPostProcessor<BridgeFrom>
- Parameters:
bean
- The bean.method
- The method.annotations
- The messaging annotation (or meta-annotation hierarchy) on the method.- Returns:
- The MessageHandler.
-
resolveTargetBeanFromMethodWithBeanAnnotation
- Overrides:
resolveTargetBeanFromMethodWithBeanAnnotation
in classAbstractMethodAnnotationPostProcessor<BridgeFrom>
-