Servlet::Http::HttpSessionBindingEvent - session binding event class
my $event = Servlet::Http::HttpSessionEvent->new($session, $attribute, $value);
my $name = $event->getName(); my $value = $event->getValue();
my $session = $event->getSession(); # or my $session = $event->getSource();
This class represents event notifications for changes to session attributes. The event is either sent to an object that implements Servlet::Http::HttpSessionBindingListener when it is bound or unbound from a session, or to a Servlet::Http::HttpSessionAttributesListener that has been configured in the deployment descriptor when any attribute is bound, unbound or replaced in a session.
Parameters:
getName()
getSession()
getSource()
getValue()
the Servlet::Http::HttpSession manpage, the Servlet::Http::HttpSessionEvent manpage, the Servlet::Http::HttpSessionAttributesListener manpage, the Servlet::Http::HttpSessionBindingListener manpage
Brian Moseley, bcm@maz.org