java.lang.Object | +--java.util.EventObject | +--javax.servlet.http.HttpSessionEvent | +--javax.servlet.http.HttpSessionBindingEvent
Events of this type are either sent to an object that implements
HttpSessionBindingListener
when it is bound or
unbound from a session, or to a HttpSessionAttributeListener
that has been configured in the deployment descriptor when any attribute is
bound, unbound or replaced in a session.
The session binds the object by a call to
HttpSession.setAttribute
and unbinds the object
by a call to HttpSession.removeAttribute
.
source
HttpSessionBindingEvent(HttpSession session,
java.lang.String name)
HttpSessionBindingEvent(HttpSession session,
java.lang.String name,
java.lang.Object value)
java.lang.String
getName()
java.lang.Object
getValue()
getSource,
toString
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
wait,
wait,
wait
public HttpSessionBindingEvent(HttpSession session, java.lang.String name)
HttpSessionBindingListener
.session
- the session to which the object is bound or unboundname
- the name with which the object is bound or unboundgetName()
,
getSession()
public HttpSessionBindingEvent(HttpSession session, java.lang.String name, java.lang.Object value)
HttpSessionBindingListener
.session
- the session to which the object is bound or unboundname
- the name with which the object is bound or unboundgetName()
,
getSession()
public HttpSession getSession()
public java.lang.String getName()
public java.lang.Object getValue()