Package org.springframework.integration.handler

Interface Summary
HandlerMethodResolver Strategy interface for resolving a Method that should be responsible for handling a given Message.
 

Class Summary
AbstractMessageHandler Base class for MessageHandler implementations that provides basic validation and error handling capabilities.
AbstractReplyProducingMessageHandler Base class for MessageHandlers that are capable of producing replies.
BridgeHandler A simple MessageHandler implementation that passes the request Message directly to the output channel without modifying it.
DelayHandler A MessageHandler that is capable of delaying the continuation of a Message flow based on the presence of a delay header on an inbound Message or a default delay value configured on this handler.
LoggingHandler MessageHandler implementation that simply logs the Message or its payload depending on the value of the 'shouldLogFullMessage' property.
MessageHandlerChain A composite MessageHandler implementation that invokes a chain of MessageHandler instances in order.
MessageMappingMethodInvoker A base or helper class for any Messaging component that acts as an adapter by invoking a "plain" (not Message-aware) method on a given target object.
MethodInvokingMessageHandler A MessageHandler that invokes the specified method on the provided object.
PayloadTypeMatchingHandlerMethodResolver An implementation of HandlerMethodResolver that matches the payload type of the Message against the expected type of its candidate methods.
ReplyMessageHolder  
ServiceActivatingHandler  
StaticHandlerMethodResolver An implementation of HandlerMethodResolver that always returns the same Method instance.