List of usage examples for javax.servlet ServletContextAttributeListener interface-usage
From source file com.medlog.webservice.lifecycle.NewServletListener.java
/** * Web application lifecycle listener. * * @author */ public class NewServletListener
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.eap.web.listener.WebApplicationDataListener.java
/** * @author jaddy0302 Rivulet WebApplicationContextListener.java 2010-3-3 * */ public class WebApplicationDataListener implements HttpSessionListener, ServletContextListener, ServletContextAttributeListener {
From source file com.adeptj.runtime.osgi.BridgeServletContextAttributeListener.java
/**
* A {@link ServletContextAttributeListener} which initializes the {@link EventDispatcherTracker} when {@link BundleContext}
* is being set as a {@link javax.servlet.ServletContext} attribute and again closes and opens when {@link BundleContext} is
* replaced as a {@link javax.servlet.ServletContext} attribute.
*
* @author Rakesh.Kumar, AdeptJ
From source file io.adeptj.runtime.osgi.BridgeServletContextAttributeListener.java
/**
* A {@link ServletContextAttributeListener} which initializes the {@link EventDispatcherTracker} when {@link BundleContext}
* is being set as a {@link javax.servlet.ServletContext} attribute and again closes and opens when {@link BundleContext} is
* replaced as a {@link javax.servlet.ServletContext} attribute.
*
* @author Rakesh.Kumar, AdeptJ
From source file org.hdiv.listener.InitWebSphereListener.java
/**
* HDIV listener for WebSphere environment.
*
* @version 1.1.1
* @author Roberto Velasco
* @author Gorka Vicente
From source file org.atmosphere.ttrex.RaceAtmosphereHandler.java
/**
* Simple AtmosphereHandler that implement the logic to build a Chat application.
*
* @author Jeanfrancois Arcand
*/
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.openanzo.combus.bayeux.BayeuxJMSBridge.java
/**
* The BayeuxJMSBridge is essentially a translator between HTTP and JMS built on top of the Bayeux Comet protocol. Bayeux is a protocol and techniques that add
* bidirectional communication to HTTP. Anzo.JS clients connect to the BayeuxJMSBridgeServlet and the Bayeux implementation will send messages to this
* BayeuxJMSBridge.
*
* The BayeuxJMSBridge will keep one JMS connection that all clients will share. Authentication is handled by blocking access to the BayeuxJMSBridgeServlet via
From source file org.apache.struts.faces.taglib.LifecycleListener.java
/**
* <p><code>LifecycleListener</code> to initialize the required lifecycle
* objects, and perform other one-time setup tasks, for the
* <em>Struts-Faces Integration Library</em>.</p>
*
* @author Craig R. McClanahan