The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

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

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

AUTHOR

Brian Moseley, bcm@maz.org