Sha256: 6801bad6d85856c5bac617b7d42b838c7ab62e14e90ad64b4381a6a4e6c40b55

Contents?: true

Size: 827 Bytes

Versions: 4

Compression:

Stored size: 827 Bytes

Contents

package org.mortbay.jetty.servlet.wadi;


public interface SessionListener
{
    /**
     * Calls when the ownership of the provided Session is acquired by the SessionManager to which this listener
     * is attached.
     * 
     * @param session New Session now owned by the attached SessionManager.
     */
    void notifyInboundSessionMigration(WadiSession session);
    
    /**
     * Calls when the ownership of the provided Session is relinquished to another SessionManager.
     * 
     * @param session Session now owned by another SessionManager.
     */
    void notifyOutboundSessionMigration(WadiSession session);
    
    /**
     * Calls when a Session is destroyed.
     * 
     * @param session Destroyed session.
     */
    void notifySessionDestruction(WadiSession session);

}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
miso-java-0.1.5 jetty/contrib/wadi/src/main/java/org/mortbay/jetty/servlet/wadi/SessionListener.java
miso-java-0.1.4 jetty/contrib/wadi/src/main/java/org/mortbay/jetty/servlet/wadi/SessionListener.java
miso-java-0.1.3 jetty/contrib/wadi/src/main/java/org/mortbay/jetty/servlet/wadi/SessionListener.java
miso-java-0.1.2 jetty/contrib/wadi/src/main/java/org/mortbay/jetty/servlet/wadi/SessionListener.java