List of usage examples for javax.servlet ServletContextListener interface-usage
From source file com.github.cherimojava.orchidae.config.ServletListener.java
/** * Modifies the filter chain to support csrf protected multipart uploads * * @author philnate */ public class ServletListener extends AbstractSecurityWebApplicationInitializer implements ServletContextListener {
From source file org.aon.esolutions.appconfig.client.web.SystemPropertiesListener.java
/**
* A J2EE Servlet Context Listener to load properties into the System properties when the Servlet
* container starts up. Looks at the following context-parm values in web.xml to load properties:
*
* <ul>
* <li>properties.location.property : The value of the system property to look at to get the Properties File Location</li>
From source file com.telefonica.euro_iaas.paasmanager.bootstrap.SynchronizationBoostrap.java
/** * @author jesus.movilla */ public class SynchronizationBoostrap implements ServletContextListener { private static Logger log = LoggerFactory.getLogger(SynchronizationBoostrap.class);
From source file com.haulmont.cuba.core.sys.singleapp.SingleAppCoreServletListener.java
/**
* This class and its twin com.haulmont.cuba.web.sys.singleapp.SingleAppWebServletListener separate "web" and "core" classes
* to different classloaders when we pack application to single WAR.
* <p>
* We create 2 URLClassLoaders (1 for core and 1 for web), with predefined (during single WAR build) list of jars (core.dependencies).
* So the classloaders load classes from the jars and only if class is not found they delegate loading to base WebAppClassLoader (their parent).
From source file edu.lternet.pasta.portal.ConfigurationListener.java
/** * @author servilla * @since Mar 9, 2012 * */ public class ConfigurationListener implements ServletContextListener {
From source file org.josso.gateway.signon.SSOContextListener.java
/**
* This Servlet Context Listener is used to start JOSSO on servlet init.
*
* @author <a href="mailto:sgonzalez@josso.org">Sebastian Gonzalez Oyuela</a>
* @version $Id: SSOContextListener.java 568 2008-07-31 18:39:20Z sgonzalez $
*/
From source file pt.webdetails.cdc.servlet.CdcServletContextListener.java
/** * CDC initializer (work in progress). Alternative to CdcLifeCycleListener. */ public class CdcServletContextListener implements ServletContextListener { private static Log logger = LogFactory.getLog(CdcServletContextListener.class);
From source file edu.cornell.mannlib.vitro.webapp.migration.rel17.RemoveObsoletePermissions.java
/** * A handful of Permissions were removed between release 1.6 and 1.7. Remove * them from the User Accounts model. */ public class RemoveObsoletePermissions implements ServletContextListener { private static final Log log = LogFactory.getLog(RemoveObsoletePermissions.class);
From source file edu.cornell.mannlib.vitro.webapp.searchindex.SearchIndexerSetup.java
/**
* Start the SearchIndexer. Create a listener on the RDFService and link it to
* the indexer.
*
* Create a history object as a listener and make it available to the
* IndexController.
From source file eionet.rod.scheduled.ExtractorJob.java
/** * Extractor scheduled job. * * @author Kaido Laine */ public class ExtractorJob extends AbstractScheduledJob implements ServletContextListener {