Package jenkins.util
Class HttpSessionListener
java.lang.Object
jenkins.util.HttpSessionListener
- All Implemented Interfaces:
ExtensionPoint,EventListener,javax.servlet.http.HttpSessionListener
public abstract class HttpSessionListener
extends Object
implements ExtensionPoint, 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
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic ExtensionList<HttpSessionListener>all()Get all of theHttpSessionListenerimplementations.voidsessionCreated(javax.servlet.http.HttpSessionEvent httpSessionEvent) voidsessionDestroyed(javax.servlet.http.HttpSessionEvent httpSessionEvent)
-
Constructor Details
-
HttpSessionListener
public HttpSessionListener()
-
-
Method Details
-
all
Get all of theHttpSessionListenerimplementations.- Returns:
- All of the
HttpSessionListenerimplementations.
-
sessionCreated
public void sessionCreated(javax.servlet.http.HttpSessionEvent httpSessionEvent) - Specified by:
sessionCreatedin interfacejavax.servlet.http.HttpSessionListener
-
sessionDestroyed
public void sessionDestroyed(javax.servlet.http.HttpSessionEvent httpSessionEvent) - Specified by:
sessionDestroyedin interfacejavax.servlet.http.HttpSessionListener
-