javax.servlet.http

Interface HttpSessionListener

public interface HttpSessionListener extends 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.

Since: v 2.3

See Also: HttpSessionEvent

Method Summary
voidsessionCreated(HttpSessionEvent se)
Notification that a session was created.
voidsessionDestroyed(HttpSessionEvent se)
Notification that a session is about to be invalidated.

Method Detail

sessionCreated

public void sessionCreated(HttpSessionEvent se)
Notification that a session was created.

Parameters: se the notification event

sessionDestroyed

public void sessionDestroyed(HttpSessionEvent se)
Notification that a session is about to be invalidated.

Parameters: se the notification event

Copyright © 1999-2002 The Apache Software Foundation. All Rights Reserved.