List of usage examples for javax.servlet ServletRequestListener interface-usage
From source file org.apache.lucene.gdata.server.registry.GDataRequestListener.java
/**
* This <tt>ServletRequestListener</tt> is used by the registry to notify
* registered {@link org.apache.lucene.gdata.server.registry.ScopeVisitor}
* implementations when a request is initialized e.g destroyed.
*
*
From source file com.krawler.filter.ReuqestListenerForDB.java
public class ReuqestListenerForDB implements ServletRequestListener { private static Log logger = LogFactory.getLog(ReuqestListenerForDB.class); public static final String COMPANY_PARAM = "cdomain"; public static final String COMPANY_SUBDOMAIN = "subdomain"; public static final String COMPANY_ID = "companyid"; public static final String USER_ID = "userid";
From source file org.pentaho.platform.web.http.request.PentahoHttpRequestListener.java
/**
* In a J2EE environment, sets the Pentaho session statically per request so the session
* can be retrieved by other consumers within the same request without having it passed
* to them explicitly.
* @author aphillips
*/
From source file com.mtgi.analytics.servlet.BehaviorTrackingListener.java
/**
* Logs behavior tracking events for incoming servlet requests. This listener is activated by the
* <code>bt:http-requests</code> Spring XML tag. It is an alternative to {@link BehaviorTrackingFilter}
* registration in <code>web.xml</code>. BehaviorTrackingFilter is more flexible, but is slightly more
* complex to configure. At most one of these methods (bt:http-requests or BehaviorTrackingFilter) should
* be used in a given application, otherwise errors will be thrown during application startup.
From source file org.mayocat.context.RequestContextInitializer.java
/** * @version $Id: 0e5468cafbdcfdfbfe37bc5fb4b84d348ddf6b2b $ */ @Component @Named("requestContextInitializer") public class RequestContextInitializer implements ServletRequestListener, EventListener {
From source file org.hdiv.listener.InitListener.java
/**
* HDIV initialization listener.
*
* @version 1.1.1
* @author Roberto Velasco
* @author Gorka Vicente
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 {