Spring Integration

Uses of Interface
org.springframework.integration.channel.ChannelInterceptor

Packages that use ChannelInterceptor
org.springframework.integration.channel   
org.springframework.integration.channel.interceptor   
org.springframework.integration.transformer   
 

Uses of ChannelInterceptor in org.springframework.integration.channel
 

Methods in org.springframework.integration.channel with parameters of type ChannelInterceptor
 boolean AbstractMessageChannel.ChannelInterceptorList.add(ChannelInterceptor interceptor)
           
 void AbstractMessageChannel.addInterceptor(ChannelInterceptor interceptor)
          Add a channel interceptor to the end of the list.
 

Method parameters in org.springframework.integration.channel with type arguments of type ChannelInterceptor
 boolean AbstractMessageChannel.ChannelInterceptorList.set(List<ChannelInterceptor> interceptors)
           
 void AbstractMessageChannel.setInterceptors(List<ChannelInterceptor> interceptors)
          Set the list of channel interceptors.
 

Uses of ChannelInterceptor in org.springframework.integration.channel.interceptor
 

Classes in org.springframework.integration.channel.interceptor that implement ChannelInterceptor
 class ChannelInterceptorAdapter
          A ChannelInterceptor with no-op method implementations so that subclasses do not have to implement all of the interface's methods.
 class GlobalChannelInterceptorWrapper
           
 class MessageSelectingInterceptor
          A ChannelInterceptor that delegates to a list of MessageSelectors to decide whether a Message should be accepted on the MessageChannel.
 class WireTap
          A ChannelInterceptor that publishes a copy of the intercepted message to a secondary target while still sending the original message to the main channel.
 

Methods in org.springframework.integration.channel.interceptor that return ChannelInterceptor
 ChannelInterceptor GlobalChannelInterceptorWrapper.getChannelInterceptor()
           
 

Constructors in org.springframework.integration.channel.interceptor with parameters of type ChannelInterceptor
GlobalChannelInterceptorWrapper(ChannelInterceptor channelInterceptor)
           
 

Uses of ChannelInterceptor in org.springframework.integration.transformer
 

Classes in org.springframework.integration.transformer that implement ChannelInterceptor
 class MessageTransformingChannelInterceptor
          A ChannelInterceptor which invokes a Transformer when either sending-to or receiving-from a channel.
 


Spring Integration

Copyright © 2010. All Rights Reserved.