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 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:
      sessionCreated in interface javax.servlet.http.HttpSessionListener
      Parameters:
      se - - the HttpSessionEvent containing the session
      See Also:
      • HttpSessionListener.sessionCreated(javax.servlet.http.HttpSessionEvent)
    • sessionDestroyed

      public void sessionDestroyed(javax.servlet.http.HttpSessionEvent se)
      HttpSession hook for additional cleanup when sessions are destroyed
      Specified by:
      sessionDestroyed in interface javax.servlet.http.HttpSessionListener
      Parameters:
      se - - the HttpSessionEvent containing the session
      See Also:
      • HttpSessionListener.sessionDestroyed(javax.servlet.http.HttpSessionEvent)