Package net.sf.cindy

Examples of net.sf.cindy.SessionHandler


*/
public class SessionHandlerFilter extends NullFilter {

    public void exceptionCaught(SessionFilterChain filterChain, Throwable cause) {
        Session session = filterChain.getSession();
        SessionHandler handler = session.getSessionHandler();
        if (handler != null)
            handler.exceptionCaught(session, cause);
    }
View Full Code Here


    }

    public void objectReceived(SessionFilterChain filterChain, Object obj)
            throws Exception {
        Session session = filterChain.getSession();
        SessionHandler handler = session.getSessionHandler();
        if (handler != null)
            handler.objectReceived(session, obj);
    }
View Full Code Here

    }

    public void objectSent(SessionFilterChain filterChain, Object obj)
            throws Exception {
        Session session = filterChain.getSession();
        SessionHandler handler = session.getSessionHandler();
        if (handler != null)
            handler.objectSent(session, obj);
    }
View Full Code Here

            handler.objectSent(session, obj);
    }

    public void sessionClosed(SessionFilterChain filterChain) throws Exception {
        Session session = filterChain.getSession();
        SessionHandler handler = session.getSessionHandler();
        if (handler != null)
            handler.sessionClosed(session);
    }
View Full Code Here

            handler.sessionClosed(session);
    }

    public void sessionStarted(SessionFilterChain filterChain) throws Exception {
        Session session = filterChain.getSession();
        SessionHandler handler = session.getSessionHandler();
        if (handler != null)
            handler.sessionStarted(session);
    }
View Full Code Here

            handler.sessionStarted(session);
    }

    public void sessionTimeout(SessionFilterChain filterChain) throws Exception {
        Session session = filterChain.getSession();
        SessionHandler handler = session.getSessionHandler();
        if (handler != null)
            handler.sessionTimeout(session);
    }
View Full Code Here

TOP

Related Classes of net.sf.cindy.SessionHandler

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.