javax.servlet.http
Interface HttpSessionBindingListener
- EventListener
public interface HttpSessionBindingListener
extends EventListener
Objects that implement this interface will be called when they are bound or
unbound into a HttpSession
with a
HttpSessionBindingEvent
.
valueBound
public void valueBound(HttpSessionBindingEvent event)
Called when the object is bound to a session.
event
- The event object containing the name and session
valueUnbound
public void valueUnbound(HttpSessionBindingEvent event)
Called when the object is unbound from a session.
event
- The event object containing the name and session