Interface SessionBindingListener
public interface SessionBindingListener
This interface is modelled after
jakarta.servlet.http.HttpSessionBindingListener.
- Version:
- $Id$
- Author:
- Daniel Rall
-
Method Summary
Modifier and TypeMethodDescriptionvoid
valueBound
(SessionBindingEvent event) Notifies the object that it is being bound to a session and identifies the session.void
valueUnbound
(SessionBindingEvent event) Notifies the object that it is being unbound from a session and identifies the session.
-
Method Details
-
valueBound
Notifies the object that it is being bound to a session and identifies the session.- Parameters:
event
- A SessionBindingEvent object.
-
valueUnbound
Notifies the object that it is being unbound from a session and identifies the session.- Parameters:
event
- A SessionBindingEvent object.
-