* @author <a href="http://community.jboss.org/people/dan.j.allen">Dan Allen</a>
*/
public class ServletEventBridgeListener extends AbstractServletEventBridge implements HttpSessionActivationListener,
HttpSessionListener, ServletContextListener, ServletRequestListener {
public void contextInitialized(final ServletContextEvent e) {
fireEvent(new InternalServletContextEvent(e.getServletContext()), InitializedLiteral.INSTANCE);
WebApplication webapp = new WebApplication(e.getServletContext());
e.getServletContext().setAttribute(WEB_APPLICATION_ATTRIBUTE_NAME, webapp);
fireEvent(webapp, InitializedLiteral.INSTANCE);
fireEvent(e.getServletContext(), InitializedLiteral.INSTANCE);
}