| |
|
| java.lang.Object listeners.ContextListener
ContextListener | final public class ContextListener implements ServletContextAttributeListener,ServletContextListener(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(ServletContextAttributeEvent event)(Code) | | Record the fact that a servlet context attribute was added.
Parameters: event - The servlet context attribute event |
attributeRemoved | public void attributeRemoved(ServletContextAttributeEvent event)(Code) | | Record the fact that a servlet context attribute was removed.
Parameters: event - The servlet context attribute event |
attributeReplaced | public void attributeReplaced(ServletContextAttributeEvent event)(Code) | | Record the fact that a servlet context attribute was replaced.
Parameters: event - The servlet context 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 |
|
|
|