Uses of Interface
org.apache.mina.protocol.ProtocolFilter

Packages that use ProtocolFilter
org.apache.mina.protocol High-level protocol implementation layer (Protocol layer). 
org.apache.mina.protocol.filter Basic ProtocolHandlerFilter implementations. 
 

Uses of ProtocolFilter in org.apache.mina.protocol
 

Classes in org.apache.mina.protocol that implement ProtocolFilter
 class ProtocolFilterAdapter
          An abstract adapter class for ProtocolFilter.
 

Methods in org.apache.mina.protocol that return ProtocolFilter
protected  ProtocolFilter AbstractProtocolFilterChain.createHeadFilter()
          Override this method to create custom head of this filter chain.
protected  ProtocolFilter ProtocolSessionManagerFilterChain.createTailFilter()
           
protected  ProtocolFilter AbstractProtocolFilterChain.createTailFilter()
          Override this method to create custom head of this filter chain.
 ProtocolFilter ProtocolFilterChain.getChild(String name)
           
 ProtocolFilter AbstractProtocolFilterChain.getChild(String name)
           
 ProtocolFilter ProtocolFilterChain.remove(String name)
           
 ProtocolFilter AbstractProtocolFilterChain.remove(String name)
          Removes the interceptor with the specified name from this chain.
 

Methods in org.apache.mina.protocol with parameters of type ProtocolFilter
 void ProtocolFilterChain.addAfter(String baseName, String name, ProtocolFilter filter)
           
 void AbstractProtocolFilterChain.addAfter(String baseName, String name, ProtocolFilter filter)
          Adds the specified interceptor with the specified name just after the interceptor whose name is baseName in this chain.
 void ProtocolFilterChain.addBefore(String baseName, String name, ProtocolFilter filter)
           
 void AbstractProtocolFilterChain.addBefore(String baseName, String name, ProtocolFilter filter)
          Adds the specified interceptor with the specified name just before the interceptor whose name is baseName in this chain.
 void ProtocolFilterChain.addFirst(String name, ProtocolFilter filter)
           
 void AbstractProtocolFilterChain.addFirst(String name, ProtocolFilter filter)
          Adds the specified interceptor with the specified name at the beginning of this chain.
 void ProtocolFilterChain.addLast(String name, ProtocolFilter filter)
           
 void AbstractProtocolFilterChain.addLast(String name, ProtocolFilter filter)
          Adds the specified interceptor with the specified name at the end of this chain.
 

Uses of ProtocolFilter in org.apache.mina.protocol.filter
 

Classes in org.apache.mina.protocol.filter that implement ProtocolFilter
 class ProtocolLoggingFilter
          Logs all MINA protocol events to Logger.
 class ProtocolThreadPoolFilter
          A Thread-pooling filter.
 



Copyright © 2004-2005 . All Rights Reserved.