All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface javax.servlet.http.HttpSessionBindingListener

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.

Version:
Servlet API 2.0
See Also:
HttpSession, putValue, removeValue, invalidate, HttpSessionBindingEvent

Method Index

 o valueBound(HttpSessionBindingEvent)
Called when the object is bound to a session.
 o valueUnbound(HttpSessionBindingEvent)
Called when the object is unbound from a session.

Methods

 o valueBound
 public abstract void valueBound(HttpSessionBindingEvent event)
Called when the object is bound to a session.

Parameters:
event - The event object containing the name and session
 o valueUnbound
 public abstract void valueUnbound(HttpSessionBindingEvent event)
Called when the object is unbound from a session.

Parameters:
event - The event object containing the name and session

All Packages  Class Hierarchy  This Package  Previous  Next  Index