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