org.springframework.integration.endpoint.interceptor
Class EndpointInterceptorAdapter

java.lang.Object
  extended by org.springframework.integration.endpoint.interceptor.EndpointInterceptorAdapter
All Implemented Interfaces:
EndpointInterceptor
Direct Known Subclasses:
ConcurrencyInterceptor, SecurityEndpointInterceptor, TransactionInterceptor

public class EndpointInterceptorAdapter
extends java.lang.Object
implements EndpointInterceptor

A convenience base class for implementing EndpointInterceptors.

Author:
Mark Fisher

Constructor Summary
EndpointInterceptorAdapter()
           
 
Method Summary
 Message<?> aroundHandle(Message<?> requestMessage, MessageHandler handler)
           
 Message<?> postHandle(Message<?> replyMessage)
           
 Message<?> preHandle(Message<?> requestMessage)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

EndpointInterceptorAdapter

public EndpointInterceptorAdapter()
Method Detail

preHandle

public Message<?> preHandle(Message<?> requestMessage)
Specified by:
preHandle in interface EndpointInterceptor

aroundHandle

public Message<?> aroundHandle(Message<?> requestMessage,
                               MessageHandler handler)
Specified by:
aroundHandle in interface EndpointInterceptor

postHandle

public Message<?> postHandle(Message<?> replyMessage)
Specified by:
postHandle in interface EndpointInterceptor