Uses of Class
jakarta.servlet.http.HttpSessionEvent
-
Packages that use HttpSessionEvent Package Description jakarta.servlet.http -
-
Uses of HttpSessionEvent in jakarta.servlet.http
Subclasses of HttpSessionEvent in jakarta.servlet.http Modifier and Type Class Description classHttpSessionBindingEventEvents of this type are either sent to an object that implementsHttpSessionBindingListenerwhen it is bound or unbound from a session, or to anHttpSessionAttributeListenerthat has been configured in the deployment descriptor when any attribute is bound, unbound or replaced in a session.Methods in jakarta.servlet.http with parameters of type HttpSessionEvent Modifier and Type Method Description default voidHttpSessionListener. sessionCreated(HttpSessionEvent se)Notification that a session was created.default voidHttpSessionListener. sessionDestroyed(HttpSessionEvent se)Notification that a session is about to be invalidated.default voidHttpSessionActivationListener. sessionDidActivate(HttpSessionEvent se)Notification that the session has just been activated.voidHttpSessionIdListener. sessionIdChanged(HttpSessionEvent se, java.lang.String oldSessionId)Notification that a session ID has been changed.default voidHttpSessionActivationListener. sessionWillPassivate(HttpSessionEvent se)Notification that the session is about to be passivated.
-