Servlet::Http::HttpSessionEvent - session event base class
my $event = Servlet::Http::HttpSessionEvent->new($session);
my $session = $event->getSession();
# or
my $session = $event->getSource();
This class represents event notifications for changes to sessions within a web
application.
- new($session)
- Construct a session event from the given source.
Parameters:
- $session
- the Servlet::Http::HttpSession instance that is the source of the
event
- 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.
Servlet::Http::HttpSession, Servlet::Http::HttpSessionListener,
Servlet::Util::Event
Brian Moseley, bcm@maz.org