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

new($session)
Construct a session event from the given source.

Parameters:

$session
the Servlet::Http::HttpSession instance that is the source of the event


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

the Servlet::Http::HttpSession manpage, the Servlet::Http::HttpSessionListener manpage, the Servlet::Util::Event manpage


AUTHOR

Brian Moseley, bcm@maz.org