List of usage examples for javax.servlet ServletContextListener interface-usage
From source file nl.b3p.catalog.arcgis.ArcObjectsInitializerListener.java
/** * Initialiseert ArcObjects. Moet in web.xml staan onder CatalogAppConfig. * * @author Matthijs Laan */ public class ArcObjectsInitializerListener implements ServletContextListener {
From source file org.osaf.cosmo.db.DbListener.java
/**
* A <code>ServletContextListener</code> that performs maintenance
* tasks on the Cosmo database when the application starts up and
* shuts down.
*
* This class simply hooks into the servlet context lifecycle. It
From source file com.graphaware.server.foundation.bootstrap.SpringInitializingServletContextListener.java
/** * A ServletContextListener listener that initializes Spring when the server starts. */ public class SpringInitializingServletContextListener implements ServletContextListener { private final WebApplicationInitializer initializer;
From source file com.wavemaker.runtime.server.CleanupListener.java
/**
* Listener that flushes all of the Introspector's internal caches and de-registers all JDBC drivers on web app
* shutdown.
*
* @author Frankie Fu
*/
From source file org.wso2.carbon.identity.application.authentication.endpoint.util.listener.AuthenticationEndpointContextListener.java
/** * Listener for executing post deployment tasks of the authentication endpoint */ public class AuthenticationEndpointContextListener implements ServletContextListener { private static final Log log = LogFactory.getLog(AuthenticationEndpointContextListener.class);
From source file org.bytesoft.openjtcc.supports.spring.web.TransactionResourceAdapterListener.java
public class TransactionResourceAdapterListener implements ServletContextListener { public void contextInitialized(ServletContextEvent event) { } public void contextDestroyed(ServletContextEvent event) {
From source file org.wso2.carbon.identity.scim.v2.provider.impl.ApplicationInitializer.java
/** * This performs one-time initialization tasks at the application startup. */ public class ApplicationInitializer implements ServletContextListener { private Log logger = LogFactory.getLog(ApplicationInitializer.class);
From source file org.apache.hadoop.hive.hwi.HWIContextListener.java
/** * After getting a contextInitialized event this component starts an instance of * the HiveSessionManager. * */ public class HWIContextListener implements javax.servlet.ServletContextListener {
From source file be.fedict.trust.xkms2.ServiceConsumerServletContextListener.java
/**
* Service Consumer Servlet Context Listener. For the moment this is the only
* way to retrieve the EJB session bean references in JAX-WS RI under JBoss AS
* 5.
*
* @author Frank Cornelis
From source file org.psikeds.common.config.ContextLoaderListener.java
/**
* Custom ContextLoader for the Springframework, allowing to override the
* configuration at runtime with files found in the configuration directory.
* Therefore it install a proxy for the javax.servlet.ServletContext and
* overrides the location of the Spring-Context-Files.
*