Interface SessionBindingListener
-
public interface SessionBindingListenerThis interface is modelled after javax.servlet.http.HttpSessionBindingListener.- Version:
- $Id$
- Author:
- Daniel Rall
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidvalueBound(SessionBindingEvent event)Notifies the object that it is being bound to a session and identifies the session.voidvalueUnbound(SessionBindingEvent event)Notifies the object that it is being unbound from a session and identifies the session.
-
-
-
Method Detail
-
valueBound
void valueBound(SessionBindingEvent event)
Notifies the object that it is being bound to a session and identifies the session.- Parameters:
event- A SessionBindingEvent object.
-
valueUnbound
void valueUnbound(SessionBindingEvent event)
Notifies the object that it is being unbound from a session and identifies the session.- Parameters:
event- A SessionBindingEvent object.
-
-