Uses of Interface
net.sf.cindy.SessionFilterChain

Packages that use SessionFilterChain
net.sf.cindy   
net.sf.cindy.filter   
net.sf.cindy.session   
 

Uses of SessionFilterChain in net.sf.cindy
 

Methods in net.sf.cindy that return SessionFilterChain
 SessionFilterChain Session.getSessionFilterChain(boolean reversed)
          Get session filter chain.
 

Methods in net.sf.cindy with parameters of type SessionFilterChain
 void SessionFilterAdapter.exceptionCaught(SessionFilterChain filterChain, java.lang.Throwable cause)
           
 void SessionFilter.exceptionCaught(SessionFilterChain filterChain, java.lang.Throwable cause)
          Session caught a exception.
 void SessionFilterAdapter.objectReceived(SessionFilterChain filterChain, java.lang.Object obj)
           
 void SessionFilter.objectReceived(SessionFilterChain filterChain, java.lang.Object obj)
          Session received a object which is decoded by PacketDecoder.
 void SessionFilterAdapter.objectSent(SessionFilterChain filterChain, java.lang.Object obj)
           
 void SessionFilter.objectSent(SessionFilterChain filterChain, java.lang.Object obj)
          Session sent a object.
 void SessionFilterAdapter.packetReceived(SessionFilterChain filterChain, Packet packet)
           
 void SessionFilter.packetReceived(SessionFilterChain filterChain, Packet packet)
          Session received a packet.
 void SessionFilterAdapter.packetSend(SessionFilterChain filterChain, Packet packet)
           
 void SessionFilter.packetSend(SessionFilterChain filterChain, Packet packet)
          Filter before send packet.
 void SessionFilterAdapter.packetSent(SessionFilterChain filterChain, Packet packet)
           
 void SessionFilter.packetSent(SessionFilterChain filterChain, Packet packet)
          Session sent a packet.
 void SessionFilterAdapter.sessionClosed(SessionFilterChain filterChain)
           
 void SessionFilter.sessionClosed(SessionFilterChain filterChain)
          Session have closed.
 void SessionFilterAdapter.sessionStarted(SessionFilterChain filterChain)
           
 void SessionFilter.sessionStarted(SessionFilterChain filterChain)
          Session have started.
 void SessionFilterAdapter.sessionTimeout(SessionFilterChain filterChain)
           
 void SessionFilter.sessionTimeout(SessionFilterChain filterChain)
          Session timeout, but not closed.
 

Uses of SessionFilterChain in net.sf.cindy.filter
 

Methods in net.sf.cindy.filter with parameters of type SessionFilterChain
 void SessionHandlerFilter.exceptionCaught(SessionFilterChain filterChain, java.lang.Throwable cause)
           
 void NullFilter.exceptionCaught(SessionFilterChain filterChain, java.lang.Throwable cause)
           
 void LogFilter.exceptionCaught(SessionFilterChain filterChain, java.lang.Throwable cause)
           
 void DispatcherFilter.exceptionCaught(SessionFilterChain filterChain, java.lang.Throwable cause)
           
 void SessionHandlerFilter.objectReceived(SessionFilterChain filterChain, java.lang.Object obj)
           
 void NullFilter.objectReceived(SessionFilterChain filterChain, java.lang.Object obj)
           
 void LogFilter.objectReceived(SessionFilterChain filterChain, java.lang.Object obj)
           
 void DispatcherFilter.objectReceived(SessionFilterChain filterChain, java.lang.Object obj)
           
 void SessionHandlerFilter.objectSent(SessionFilterChain filterChain, java.lang.Object obj)
           
 void NullFilter.objectSent(SessionFilterChain filterChain, java.lang.Object obj)
           
 void LogFilter.objectSent(SessionFilterChain filterChain, java.lang.Object obj)
           
 void DispatcherFilter.objectSent(SessionFilterChain filterChain, java.lang.Object obj)
           
 void StatisticFilter.packetReceived(SessionFilterChain filterChain, Packet packet)
           
 void SSLFilter.packetReceived(SessionFilterChain filterChain, Packet packet)
           
 void NullFilter.packetReceived(SessionFilterChain filterChain, Packet packet)
           
 void LogFilter.packetReceived(SessionFilterChain filterChain, Packet packet)
           
 void DispatcherFilter.packetReceived(SessionFilterChain filterChain, Packet packet)
           
 void SSLFilter.packetSend(SessionFilterChain filterChain, Packet packet)
           
 void NullFilter.packetSend(SessionFilterChain filterChain, Packet packet)
           
 void LogFilter.packetSend(SessionFilterChain filterChain, Packet packet)
           
 void DispatcherFilter.packetSend(SessionFilterChain filterChain, Packet packet)
           
 void StatisticFilter.packetSent(SessionFilterChain filterChain, Packet packet)
           
 void NullFilter.packetSent(SessionFilterChain filterChain, Packet packet)
           
 void LogFilter.packetSent(SessionFilterChain filterChain, Packet packet)
           
 void DispatcherFilter.packetSent(SessionFilterChain filterChain, Packet packet)
           
 void StatisticFilter.sessionClosed(SessionFilterChain filterChain)
           
 void SessionHandlerFilter.sessionClosed(SessionFilterChain filterChain)
           
 void SSLFilter.sessionClosed(SessionFilterChain filterChain)
           
 void NullFilter.sessionClosed(SessionFilterChain filterChain)
           
 void LogFilter.sessionClosed(SessionFilterChain filterChain)
           
 void DispatcherFilter.sessionClosed(SessionFilterChain filterChain)
           
 void StatisticFilter.sessionStarted(SessionFilterChain filterChain)
           
 void SessionHandlerFilter.sessionStarted(SessionFilterChain filterChain)
           
 void SSLFilter.sessionStarted(SessionFilterChain filterChain)
           
 void NullFilter.sessionStarted(SessionFilterChain filterChain)
           
 void LogFilter.sessionStarted(SessionFilterChain filterChain)
           
 void DispatcherFilter.sessionStarted(SessionFilterChain filterChain)
           
 void SessionHandlerFilter.sessionTimeout(SessionFilterChain filterChain)
           
 void NullFilter.sessionTimeout(SessionFilterChain filterChain)
           
 void LogFilter.sessionTimeout(SessionFilterChain filterChain)
           
 void DispatcherFilter.sessionTimeout(SessionFilterChain filterChain)
           
 

Uses of SessionFilterChain in net.sf.cindy.session
 

Classes in net.sf.cindy.session that implement SessionFilterChain
 class AbstractSessionFilterChain
          Abstract session filter chain.
 

Methods in net.sf.cindy.session that return SessionFilterChain
 SessionFilterChain AbstractSession.getSessionFilterChain(boolean reversed)
           
protected  SessionFilterChain AbstractSession.getSessionFilterChain(SessionFilter operateFilter, boolean reversed)