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 com.ericsson.eif.hansoft.HansoftManager.java

public class HansoftManager implements ServletContextListener, HttpSessionListener {

    private static final Logger logger = Logger.getLogger(HansoftManager.class.getName());

    public final static String REALM = "Hansoft";

From source file org.everit.authentication.cas.CasAuthentication.java

/**
 * The implementation that supports CAS authentication.
 * <p>
 * <b>Implemented interfaces</b>
 * </p>
 * <ul>

From source file org.etudes.jforum.ForumSessionListener.java

/**
 * @author Rafael Steil
 */
public class ForumSessionListener implements HttpSessionListener {
    private static final Log logger = LogFactory.getLog(ForumSessionListener.class);

From source file com.manydesigns.portofino.servlets.PortofinoListener.java

public class PortofinoListener
        implements ServletContextListener, HttpSessionListener, ServletContextAttributeListener {
    public static final String copyright = "Copyright (c) 2005-2013, ManyDesigns srl";

    // **************************************************************************
    // Constants

From source file org.everit.osgi.authentication.cas.internal.CasAuthenticationComponent.java

/**
 * A component that supports CAS authentication. The following cases are handled by this component:
 * <ul>
 * <li><b>CAS service ticket validation</b>: If the request contains a CAS service ticket, it will be validated on the
 * CAS server by invoking its service ticket validation URL. If the ticket is valid and the returned principal
 * (username) can be mapped to a Resource ID, then the Resource ID will be assigned to the session.</li>

From source file com.icesoft.faces.util.event.servlet.ContextEventRepeater.java

/**
 *
 */
public class ContextEventRepeater implements HttpSessionListener, ServletContextListener {
    private static final Log LOG = LogFactory.getLog(ContextEventRepeater.class);

From source file org.jahia.bin.listeners.JahiaContextLoaderListener.java

/**
 * Entry point and startup/shutdown listener for all Jahia services, including Spring application context, OSGi platform service etc.
 *
 * @author Serge Huber
 */
public class JahiaContextLoaderListener extends PortalStartupListener implements ServletRequestListener,

From source file org.mifos.framework.ApplicationInitializer.java

/**
 * This class should prepare all the sub-systems that are required by the app. Cleanup should also happen here when the
 * application is shutdown.
 */
public class ApplicationInitializer implements ServletContextListener, ServletRequestListener, HttpSessionListener {