public void sessionCreated(HttpSessionEvent se) {
final HttpSession session = se.getSession();
final HttpSessionCreatedEvent httpSessionCreatedEvent = new HttpSessionCreatedEvent(session);
final WebApplicationContext webApplicationContext = this.getWebApplicationContext(session);
webApplicationContext.publishEvent(httpSessionCreatedEvent);
}
/* (non-Javadoc)
* @see javax.servlet.http.HttpSessionListener#sessionDestroyed(javax.servlet.http.HttpSessionEvent)
*/