List of usage examples for javax.servlet.http HttpSessionListener interface-usage
From source file SessionLogger.java
public class SessionLogger implements HttpSessionListener { private Logger log; public SessionLogger() {
From source file com.boundlessgeo.geoserver.AppSessionDebugger.java
@Component public class AppSessionDebugger implements HttpSessionListener { static TreeMap<String, HttpSession> sessions = new TreeMap<String, HttpSession>(); @Override public void sessionCreated(HttpSessionEvent se) {
From source file gov.nih.nci.ncicb.cadsr.umlmodelbrowser.servlets.SessionListener.java
public class SessionListener implements HttpSessionListener { protected static Log log = LogFactory.getLog(SessionListener.class.getName()); public void sessionCreated(HttpSessionEvent se) { if (log.isDebugEnabled()) {
From source file org.jasig.cas.client.session.SingleSignOutHttpSessionListener.java
/**
* Listener to detect when an HTTP session is destroyed and remove it from the map of
* managed sessions. Also allows for the programmatic removal of sessions.
* <p>
* Enables the CAS Single Sign out feature.
*
From source file com.isalnikov.config.web.listener.UserServletContextListener.java
/** * * @author Igor Salnikov */ @WebListener public class UserServletContextListener implements HttpSessionListener {
From source file com.medlog.webservice.lifecycle.NewServletListener.java
/** * Web application lifecycle listener. * * @author */ public class NewServletListener
From source file ispok.helper.SessionListener.java
/** * * @author Jan Mucha <j.mucha@seznam.cz> */ @WebListener public class SessionListener implements HttpSessionListener {
From source file org.seratic.enterprise.tgestiona.web.filter.AppHttpSessionListener.java
/** * * @author VICTORAL */ public class AppHttpSessionListener implements HttpSessionListener {
From source file org.openmrs.web.SessionListener.java
/** * Handles events of session life cycle. <br> * <br> * This is set by the web.xml class */ public class SessionListener implements HttpSessionListener {
From source file tds.tdsadmin.session.TdsAdminSessionListener.java
public class TdsAdminSessionListener implements HttpSessionListener { private static final Logger _logger = LoggerFactory.getLogger(TdsAdminSessionListener.class); public void sessionCreated(HttpSessionEvent event) { PropertiesBean props = WebApplicationContextUtils .getWebApplicationContext(event.getSession().getServletContext()).getBean(PropertiesBean.class);