Servlet::ServletContextListener - context listener interface
$listener->contextInitialized($event)
$listener->contextDestroyed($event);
Implementations of this interface receive notifications about changes to the servlet context of the web application they are a part of. To receive notification events, the implementation class must be configured in the deployment descriptor for the web application.
For each of the following methods, the event passed to the method is of type Servlet::ServletContextEvent.
contextDestroyed($event)
Parameters:
contextInitialized($event)
Parameters:
the Servlet::ServletContext manpage, the Servlet::ContextEvent manpage
Brian Moseley, bcm@maz.org