The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Servlet::Http::HttpSessionAttributesListener - session listener interface

SYNOPSIS

$listener->attributeAdded($event);

$listener->attributeRemoved($event);

$listener->attributeReplaced($event);

DESCRIPTION

This listener interface can be implemented in order to get notifications of changes made to sessions within this web application.

METHODS

attributeAdded($event)

Notification that an attribute has been added to a session.

Parameters:

$event

an instance of Servlet::Http::HttpSessionBindingEvent

attributeRemoved($event)

Notification that an attribute has been removed from a session.

Parameters:

$event

an instance of Servlet::Http::HttpSessionBindingEvent

attributeReplaced($event)

Notification that an attribute has been replaced in a session.

Parameters:

$event

an instance of Servlet::Http::HttpSessionBindingEvent

SEE ALSO

Servlet::Http::HttpSession, Servlet::Http::HttpSessionEvent

AUTHOR

Brian Moseley, bcm@maz.org