Servlet::Http::HttpSessionAttributesListener - session listener interface
$listener->attributeAdded($event);
$listener->attributeRemoved($event);
$listener->attributeReplaced($event);
This listener interface can be implemented in order to get notifications of
changes made to sessions within this web application.
- attributeAdded($event)
- Notification that an attribute has been added to a session.
Parameters:
- $event
- an instance of Servlet::Http::HttpSessionBindingEvent
- attributeRemoved($event)
- Notification that an attribute has been removed from a session.
Parameters:
- $event
- an instance of Servlet::Http::HttpSessionBindingEvent
- attributeReplaced($event)
- Notification that an attribute has been replaced in a session.
Parameters:
- $event
- an instance of Servlet::Http::HttpSessionBindingEvent
Servlet::Http::HttpSession, Servlet::Http::HttpSessionEvent
Brian Moseley, bcm@maz.org