List of usage examples for javax.servlet.http HttpSessionListener interface-usage
From source file com.bluexml.xforms.controller.navigation.NavigationSessionListener.java
/**
* The listener interface for receiving navigationSession events. The class that is interested in
* processing a navigationSession event implements this interface, and the object created with that
* class is registered with a component using the component's
* <code>addNavigationSessionListener<code> method. When
* the navigationSession event occurs, that object's appropriate
From source file com.versatus.jwebshield.securitylock.SecurityCheckListener.java
/** * Application Lifecycle Listener implementation class SecurityCheckListener * */ public final class SecurityCheckListener implements ServletContextListener, HttpSessionListener { /**
From source file it.scoppelletti.programmerpower.web.spring.ApplicationContextListener.java
/**
* Gestione del ciclo di vita di un’applicazione Web.
*
* <P>La classe {@code ApplicationContextListener} unifica la gestione del
* ciclo di vita dei componenti dell’applicazione:</P>
*
From source file org.eap.web.listener.WebApplicationDataListener.java
/** * @author jaddy0302 Rivulet WebApplicationContextListener.java 2010-3-3 * */ public class WebApplicationDataListener implements HttpSessionListener, ServletContextListener, ServletContextAttributeListener {
From source file org.opencms.main.OpenCmsListener.java
/**
* Provides the OpenCms system with information from the servlet context.<p>
*
* Used for the following purposes:<ul>
* <li>Starting up OpenCms when the servlet container is started.</li>
* <li>Shutting down OpenCms when the servlet container is shut down.</li>
From source file org.webcurator.ui.listener.AcegiLogoutListener.java
/** * The a session listener that logs the user out when the session expires. * @author bbeaumont */ public class AcegiLogoutListener implements HttpSessionListener { /** Logger for the BrowseController. **/
From source file org.alfresco.repo.webdav.WebDAVSessionListener.java
/**
* <p>WebDAVSessionListener is used to forcibly unlock documents that were
* persistently locked during user's session and were not unlocked because of some extraordinary
* situations such as network connection lost. Was introduced in ALF-11777 jira issue.
* </p>
*
From source file org.hdiv.listener.InitWebSphereListener.java
/**
* HDIV listener for WebSphere environment.
*
* @version 1.1.1
* @author Roberto Velasco
* @author Gorka Vicente
From source file net.big_oh.common.web.listener.session.SimpleSessionTrackingListener.java
/**
* An <code>HttpSessionListener</code> that tracks the currently active sessions
* for multiple web applications running in a JVM.
*
* Note that the singleton member contextToSessionCollectionMap may have
* multiple instances for multiple web applications, depending on whether each
From source file org.musicrecital.webapp.listener.UserCounterListener.java
/**
* UserCounterListener class used to count the current number
* of active users for the applications. Does this by counting
* how many user objects are stuffed into the session. It also grabs
* these users and exposes them in the servlet context.
*