| javax.servlet.ServletContextListener
ServletContextListener | public interface ServletContextListener extends EventListener(Code) | | Interface for a listener receiving events when the ServletContext
changes.
since: Servlet 2.3 |
contextDestroyed | public void contextDestroyed(ServletContextEvent event)(Code) | | Callback when a ServletContext is destroyed
Parameters: event - the event for the context destruction |
contextInitialized | public void contextInitialized(ServletContextEvent event)(Code) | | Callback when a ServletContext is initialized
Parameters: event - the event for the context initialization |
|
|