Package javax.servlet.http
Interface HttpSessionListener
- All Superinterfaces:
EventListener
Implementations of this interface may are notified of changes to the
list of active sessions in a web application.
To recieve notification events, the implementation class
must be configured in the deployment descriptor for the web application.
- Since:
- v 2.3
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Notification that a session was created.void
Notification that a session was invalidated.
-
Method Details
-
sessionCreated
Notification that a session was created.- Parameters:
se
- the notification event
-
sessionDestroyed
Notification that a session was invalidated.- Parameters:
se
- the notification event
-