NAME
Servlet::Http::HttpSessionEvent - session event base class
SYNOPSIS
my $event = Servlet::Http::HttpSessionEvent->new($session);
my $session = $event->getSession();
# or
my $session = $event->getSource();
DESCRIPTION
This class represents event notifications for changes to sessions within a web application.
CONSTRUCTOR
METHODS
- getSession()
-
Returns the Servlet::Http::HttpSession that is the source of this event.
- getSource()
-
Returns the Servlet::Http::HttpSession that is the source of this event.
SEE ALSO
Servlet::Http::HttpSession, Servlet::Http::HttpSessionListener, Servlet::Util::Event
AUTHOR
Brian Moseley, bcm@maz.org