Servlet::ServletContextAttributeListener - context attribute listener interface
$listener->attributeAdded($event);
$listener->attributeReplaced($event)
$listener->attributeRemoved($event)
Implementations of this interface receive notifications of changes to the attribute list on the servlet context of a web application. 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::ServletContextAttributeEvent.
attributeAdded($event)
Parameters:
attributeRemoved($event)
Parameters:
attributeReplaceded($event)
Parameters:
the Servlet::ServletContext manpage, the Servlet::ContextAttributeEvent manpage
Brian Moseley, bcm@maz.org