Uses of Class
javax.servlet.http.HttpSessionEvent
-
Packages that use HttpSessionEvent Package Description javax.servlet.http -
-
Uses of HttpSessionEvent in javax.servlet.http
Subclasses of HttpSessionEvent in javax.servlet.http Modifier and Type Class Description class
HttpSessionBindingEvent
Events of this type are either sent to an object that implementsHttpSessionBindingListener
when it is bound or unbound from a session, or to aHttpSessionAttributeListener
that 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 HttpSessionEvent Modifier and Type Method Description default void
HttpSessionListener. sessionCreated(HttpSessionEvent se)
Receives notification that a session has been created.default void
HttpSessionListener. sessionDestroyed(HttpSessionEvent se)
Receives notification that a session is about to be invalidated.default void
HttpSessionActivationListener. sessionDidActivate(HttpSessionEvent se)
Notification that the session has just been activated.void
HttpSessionIdListener. sessionIdChanged(HttpSessionEvent event, String oldSessionId)
Receives notification that session id has been changed in a session.default void
HttpSessionActivationListener. sessionWillPassivate(HttpSessionEvent se)
Notification that the session is about to be passivated.
-