org.springframework.integration.transformer
Class MessageTransformingHandler
java.lang.Object
org.springframework.integration.context.IntegrationObjectSupport
org.springframework.integration.handler.AbstractMessageHandler
org.springframework.integration.handler.AbstractReplyProducingMessageHandler
org.springframework.integration.transformer.MessageTransformingHandler
- All Implemented Interfaces:
- BeanFactoryAware, BeanNameAware, InitializingBean, Ordered, MessageHandler, MessageProducer, NamedComponent
public class MessageTransformingHandler
- extends AbstractReplyProducingMessageHandler
A reply-producing MessageHandler
that delegates to a
Transformer
instance to modify the received Message
and sends the result to its output channel.
- Author:
- Mark Fisher, Oleg Zhurakousky
Methods inherited from class org.springframework.integration.context.IntegrationObjectSupport |
afterPropertiesSet, getBeanFactory, getChannelResolver, getComponentName, getConversionService, getTaskScheduler, setBeanFactory, setBeanName, setComponentName, setConversionService, setTaskScheduler, toString, writeMessageHistory |
MessageTransformingHandler
public MessageTransformingHandler(Transformer transformer)
- Create a
MessageTransformingHandler
instance that delegates to
the provided Transformer
.
getComponentType
public String getComponentType()
- Description copied from class:
IntegrationObjectSupport
- Subclasses may implement this method to provide component type information.
- Specified by:
getComponentType
in interface NamedComponent
- Overrides:
getComponentType
in class AbstractMessageHandler
onInit
protected void onInit()
- Description copied from class:
IntegrationObjectSupport
- Subclasses may implement this for initialization logic.
- Overrides:
onInit
in class IntegrationObjectSupport
handleRequestMessage
protected Object handleRequestMessage(Message<?> message)
- Description copied from class:
AbstractReplyProducingMessageHandler
- Subclasses must implement this method to handle the request Message. The return
value may be a Message, a MessageBuilder, or any plain Object. The base class
will handle the final creation of a reply Message from any of those starting
points. If the return value is null, the Message flow will end here.
- Specified by:
handleRequestMessage
in class AbstractReplyProducingMessageHandler
handleResult
protected void handleResult(Object replyMessage,
MessageHeaders requestHeaders,
MessageChannel replyChannel)
- Overrides:
handleResult
in class AbstractReplyProducingMessageHandler
Copyright © 2010. All Rights Reserved.