Example usage for javax.servlet.http HttpSessionListener interface-usage

List of usage examples for javax.servlet.http HttpSessionListener interface-usage

Introduction

In this page you can find the example usage for javax.servlet.http HttpSessionListener interface-usage.

Usage

From source file org.apache.openejb.arquillian.tests.listenerenventry.PojoServletSessionListener.java

public class PojoServletSessionListener implements HttpSessionListener {

    @Inject
    private Car car;

    @EJB

From source file de.appsolve.padelcampus.listener.SessionEventListener.java

/**
 * Delete all unpaid blocking bookings whose session timeout has expired
 *
 * @author dominik
 */
public class SessionEventListener implements HttpSessionListener {

From source file org.apache.openejb.arquillian.tests.listenerlocalinject.PojoServletSessionListener.java

public class PojoServletSessionListener implements HttpSessionListener {

    @Inject
    private Car car;

    @EJB

From source file de.interseroh.report.webapp.SessionListener.java

public class SessionListener implements HttpSessionListener {

    private static final Logger logger = LoggerFactory.getLogger(SessionListener.class);

    private static final String DEFAULT_TIMEOUT_INTERVAL = "21600";

From source file org.apache.struts2.showcase.chat.ChatSessionListener.java

public class ChatSessionListener implements HttpSessionListener {

    private static final Log _log = LogFactory.getLog(ChatSessionListener.class);

    public void sessionCreated(HttpSessionEvent event) {
    }

From source file MyServlet.java

/**
 * Example listener for context-related application events, which were
 * introduced in the 2.3 version of the Servlet API.  This listener
 * merely documents the occurrence of such events in the application log
 * associated with our servlet context.
 *

From source file org.netxilia.server.service.user.SessionListener.java

/**
 * This class listens for the session creation and destruction and cleans-up memory one a session terminated.
 * 
 * @author <a href='mailto:ax.craciun@gmail.com'>Alexandru Craciun</a>
 * 
 */

From source file cc.kune.core.server.UserSessionMonitor.java

/**
 * The Class UserSessionMonitor.
 * 
 * @author vjrj@ourproject.org (Vicente J. Ruiz Jurado)
 */
@Singleton

From source file org.sakaiproject.metaobj.shared.control.SessionListener.java

/**
 * @author chmaurer
 */
public class SessionListener implements HttpSessionListener {

    protected final transient Log logger = LogFactory.getLog(getClass());

From source file org.dms.sys.web.app.ContextListener.java

/**
 * ServletContextListener implementation that initialises the application.
 * 
 * NOTE: This class must appear after the Spring context loader listener
 * 
 * @author gavinc