Uses of Class
javax.servlet.http.HttpSessionEvent
Packages that use HttpSessionEvent
Package
Description
The javax.servlet.http package contains a number of classes and interfaces
that describe and define the contracts between a servlet class
running under the HTTP protocol and the runtime environment provided
for an instance of such a class by a conforming servlet container.
-
Uses of HttpSessionEvent in javax.servlet.http
Subclasses of HttpSessionEvent in javax.servlet.httpModifier and TypeClassDescriptionclassEvents of this type are either sent to an object that implementsHttpSessionBindingListenerwhen it is bound or unbound from a session, or to aHttpSessionAttributeListenerthat has been configured in the deployment descriptor when any attribute is bound, unbound or replaced in a session.Methods in javax.servlet.http with parameters of type HttpSessionEventModifier and TypeMethodDescriptionvoidHttpSessionListener.sessionCreated(HttpSessionEvent se) Receives notification that a session has been created.voidHttpSessionListener.sessionDestroyed(HttpSessionEvent se) Receives notification that a session is about to be invalidated.voidHttpSessionActivationListener.sessionDidActivate(HttpSessionEvent se) Notification that the session has just been activated.voidHttpSessionActivationListener.sessionWillPassivate(HttpSessionEvent se) Notification that the session is about to be passivated.