public void contextDestroyed(final ServletContextEvent e) {
fireEvent(new InternalServletContextEvent(e.getServletContext()), DestroyedLiteral.INSTANCE);
}
public void requestInitialized(final ServletRequestEvent e) {
fireEvent(new InternalServletRequestEvent(e.getServletRequest()), InitializedLiteral.INSTANCE);
if (e.getServletRequest() instanceof HttpServletRequest) {
HttpServletRequest httpRequest = HttpServletRequest.class.cast(e.getServletRequest());
fireEvent(e.getServletRequest(), InitializedLiteral.INSTANCE, new PathLiteral(httpRequest.getServletPath()),
new HttpMethodLiteral(httpRequest.getMethod()));
} else {