Home » apache-tomcat-6.0.26-src » javax » servlet » http » [javadoc | source]
javax.servlet.http
public interface: HttpSessionListener [javadoc | source]

All Implemented Interfaces:
    EventListener

Implementations of this interface are notified of changes to the list of active sessions in a web application. To receive notification events, the implementation class must be configured in the deployment descriptor for the web application.
Method from javax.servlet.http.HttpSessionListener Summary:
sessionCreated,   sessionDestroyed
Method from javax.servlet.http.HttpSessionListener Detail:
 public  void sessionCreated(HttpSessionEvent se)
    Notification that a session was created.
 public  void sessionDestroyed(HttpSessionEvent se)
    Notification that a session is about to be invalidated.