Uses of Interface
org.apache.mina.io.IoFilter

Packages that use IoFilter
org.apache.mina.io Low-level protocol implementation layer (I/O layer). 
org.apache.mina.io.filter Basic IoHandlerFilter implementations. 
 

Uses of IoFilter in org.apache.mina.io
 

Classes in org.apache.mina.io that implement IoFilter
 class IoFilterAdapter
          An abstract adapter class for IoFilter.
 

Methods in org.apache.mina.io that return IoFilter
protected  IoFilter AbstractIoFilterChain.createHeadFilter()
          Override this method to create custom head of this filter chain.
protected  IoFilter IoSessionManagerFilterChain.createTailFilter()
           
protected  IoFilter AbstractIoFilterChain.createTailFilter()
          Override this method to create custom tail of this filter chain.
 IoFilter IoFilterChain.getChild(String name)
           
 IoFilter AbstractIoFilterChain.getChild(String name)
           
 IoFilter IoFilterChain.remove(String name)
           
 IoFilter AbstractIoFilterChain.remove(String name)
          Removes the interceptor with the specified name from this chain.
 

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

Uses of IoFilter in org.apache.mina.io.filter
 

Classes in org.apache.mina.io.filter that implement IoFilter
 class BlacklistFilter
          A IoFilter which blocks connections from blacklisted remote address.
 class IoLoggingFilter
          Logs all MINA I/O events to Logger.
 class IoThreadPoolFilter
          A Thread-pooling filter.
 class SSLFilter
          An SSL filter that encrypts and decrypts the data exchanged in the session.
 



Copyright © 2004-2005 . All Rights Reserved.