Package jenkins.util
Class HttpSessionListener
java.lang.Object
jenkins.util.HttpSessionListener
- All Implemented Interfaces:
ExtensionPoint
,jakarta.servlet.http.HttpSessionListener
,EventListener
,javax.servlet.http.HttpSessionListener
public abstract class HttpSessionListener
extends Object
implements ExtensionPoint, jakarta.servlet.http.HttpSessionListener, javax.servlet.http.HttpSessionListener
HttpSessionListener
ExtensionPoint
for Jenkins.
Allows plugins to listen to HttpSession
lifecycle events.
- Since:
- 2.2
- Author:
- tom.fennelly@gmail.com
-
Nested Class Summary
Nested classes/interfaces inherited from interface hudson.ExtensionPoint
ExtensionPoint.LegacyInstancesAreScopedToHudson
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic ExtensionList<HttpSessionListener>
all()
Get all of theHttpSessionListener
implementations.void
sessionCreated
(jakarta.servlet.http.HttpSessionEvent httpSessionEvent) void
sessionCreated
(javax.servlet.http.HttpSessionEvent httpSessionEvent) Deprecated.void
sessionDestroyed
(jakarta.servlet.http.HttpSessionEvent httpSessionEvent) void
sessionDestroyed
(javax.servlet.http.HttpSessionEvent httpSessionEvent) Deprecated.
-
Constructor Details
-
HttpSessionListener
public HttpSessionListener()
-
-
Method Details
-
all
Get all of theHttpSessionListener
implementations.- Returns:
- All of the
HttpSessionListener
implementations.
-
sessionCreated
public void sessionCreated(jakarta.servlet.http.HttpSessionEvent httpSessionEvent) - Specified by:
sessionCreated
in interfacejakarta.servlet.http.HttpSessionListener
-
sessionDestroyed
public void sessionDestroyed(jakarta.servlet.http.HttpSessionEvent httpSessionEvent) - Specified by:
sessionDestroyed
in interfacejakarta.servlet.http.HttpSessionListener
-
sessionCreated
Deprecated.- Specified by:
sessionCreated
in interfacejavax.servlet.http.HttpSessionListener
-
sessionDestroyed
Deprecated.- Specified by:
sessionDestroyed
in interfacejavax.servlet.http.HttpSessionListener
-
sessionCreated(HttpSessionEvent)