FileDocCategorySizeDatePackage
HttpSessionBindingListener.javaAPI DocGlassfish v2 API3186Fri May 04 22:34:20 BST 2007javax.servlet.http

HttpSessionBindingListener

public interface HttpSessionBindingListener implements EventListener
Causes an object to be notified when it is bound to or unbound from a session. The object is notified by an {@link HttpSessionBindingEvent} object. This may be as a result of a servlet programmer explicitly unbinding an attribute from a session, due to a session being invalidated, or due to a session timing out.
author
Various
see
HttpSession
see
HttpSessionBindingEvent

Fields Summary
Constructors Summary
Methods Summary
public voidvalueBound(javax.servlet.http.HttpSessionBindingEvent event)
Notifies the object that it is being bound to a session and identifies the session.

param
event the event that identifies the session
see
#valueUnbound

public voidvalueUnbound(javax.servlet.http.HttpSessionBindingEvent event)
Notifies the object that it is being unbound from a session and identifies the session.

param
event the event that identifies the session
see
#valueBound