Package org.kuali.rice.krad.web.listener
Class KualiHttpSessionListener
java.lang.Object
org.kuali.rice.krad.web.listener.KualiHttpSessionListener
- All Implemented Interfaces:
EventListener,javax.servlet.http.HttpSessionListener
public class KualiHttpSessionListener
extends Object
implements javax.servlet.http.HttpSessionListener
Used to handle session timeouts where
PessimisticLock objects should
be removed from a document- Author:
- Kuali Rice Team (rice.collab@kuali.org)
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidsessionCreated(javax.servlet.http.HttpSessionEvent se) HttpSession hook for additional setup method when sessions are createdvoidsessionDestroyed(javax.servlet.http.HttpSessionEvent se) HttpSession hook for additional cleanup when sessions are destroyed
-
Constructor Details
-
KualiHttpSessionListener
public KualiHttpSessionListener()
-
-
Method Details
-
sessionCreated
public void sessionCreated(javax.servlet.http.HttpSessionEvent se) HttpSession hook for additional setup method when sessions are created- Specified by:
sessionCreatedin interfacejavax.servlet.http.HttpSessionListener- Parameters:
se- - the HttpSessionEvent containing the session- See Also:
-
sessionDestroyed
public void sessionDestroyed(javax.servlet.http.HttpSessionEvent se) HttpSession hook for additional cleanup when sessions are destroyed- Specified by:
sessionDestroyedin interfacejavax.servlet.http.HttpSessionListener- Parameters:
se- - the HttpSessionEvent containing the session- See Also:
-