Class HttpSessionInstrumentationSupport
java.lang.Object
com.atlassian.jira.instrumentation.httpsession.HttpSessionInstrumentationSupport
- All Implemented Interfaces:
EventListener
,javax.servlet.http.HttpSessionAttributeListener
,javax.servlet.http.HttpSessionListener
public class HttpSessionInstrumentationSupport
extends Object
implements javax.servlet.http.HttpSessionListener, javax.servlet.http.HttpSessionAttributeListener
Keeps track of HttpSession related stuff
- Since:
- v4.4
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
attributeAdded
(javax.servlet.http.HttpSessionBindingEvent se) void
attributeRemoved
(javax.servlet.http.HttpSessionBindingEvent se) void
attributeReplaced
(javax.servlet.http.HttpSessionBindingEvent se) void
sessionCreated
(javax.servlet.http.HttpSessionEvent se) void
sessionDestroyed
(javax.servlet.http.HttpSessionEvent se)
-
Constructor Details
-
HttpSessionInstrumentationSupport
public HttpSessionInstrumentationSupport()
-
-
Method Details
-
sessionCreated
public void sessionCreated(javax.servlet.http.HttpSessionEvent se) - Specified by:
sessionCreated
in interfacejavax.servlet.http.HttpSessionListener
-
sessionDestroyed
public void sessionDestroyed(javax.servlet.http.HttpSessionEvent se) - Specified by:
sessionDestroyed
in interfacejavax.servlet.http.HttpSessionListener
-
attributeAdded
public void attributeAdded(javax.servlet.http.HttpSessionBindingEvent se) - Specified by:
attributeAdded
in interfacejavax.servlet.http.HttpSessionAttributeListener
-
attributeRemoved
public void attributeRemoved(javax.servlet.http.HttpSessionBindingEvent se) - Specified by:
attributeRemoved
in interfacejavax.servlet.http.HttpSessionAttributeListener
-
attributeReplaced
public void attributeReplaced(javax.servlet.http.HttpSessionBindingEvent se) - Specified by:
attributeReplaced
in interfacejavax.servlet.http.HttpSessionAttributeListener
-