| |
|
| java.lang.Object listeners.SessionListener
SessionListener | final public class SessionListener implements ServletContextListener,HttpSessionAttributeListener,HttpSessionListener(Code) | | 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.
author: Craig R. McClanahan version: $Revision: 1.2 $ $Date: 2004/03/18 16:40:33 $ |
attributeAdded | public void attributeAdded(HttpSessionBindingEvent event)(Code) | | Record the fact that a servlet context attribute was added.
Parameters: event - The session attribute event |
attributeRemoved | public void attributeRemoved(HttpSessionBindingEvent event)(Code) | | Record the fact that a servlet context attribute was removed.
Parameters: event - The session attribute event |
attributeReplaced | public void attributeReplaced(HttpSessionBindingEvent event)(Code) | | Record the fact that a servlet context attribute was replaced.
Parameters: event - The session attribute event |
contextDestroyed | public void contextDestroyed(ServletContextEvent event)(Code) | | Record the fact that this web application has been destroyed.
Parameters: event - The servlet context event |
contextInitialized | public void contextInitialized(ServletContextEvent event)(Code) | | Record the fact that this web application has been initialized.
Parameters: event - The servlet context event |
sessionCreated | public void sessionCreated(HttpSessionEvent event)(Code) | | Record the fact that a session has been created.
Parameters: event - The session event |
sessionDestroyed | public void sessionDestroyed(HttpSessionEvent event)(Code) | | Record the fact that a session has been destroyed.
Parameters: event - The session event |
|
|
|