HttpSessionBindingEvent (Java EE 5 SDK)

Java

Java EE 5 SDK

深圳电信培训中心.徐海蛟老师.


javax.servlet.http Class HttpSessionBindingEvent

java.lang.Object
  extended by java.util.EventObject
      extended by javax.servlet.http.HttpSessionEvent
          extended by javax.servlet.http.HttpSessionBindingEvent
所有已实现的接口:
Serializable

public class HttpSessionBindingEvent
extends HttpSessionEvent

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.

作者:
Various
另请参见:
HttpSession, HttpSessionBindingListener, HttpSessionAttributeListener, Serialized Form

字段摘要
 
Fields inherited from class java.util.EventObject
source
 
构造器摘要
HttpSessionBindingEvent(HttpSession session, String name)
          Constructs an event that notifies an object that it has been bound to or unbound from a session.
HttpSessionBindingEvent(HttpSession session, String name, Object value)
          Constructs an event that notifies an object that it has been bound to or unbound from a session.
 
方法摘要
 String getName()
          Returns the name with which the attribute is bound to or unbound from the session.
 HttpSession getSession()
          Return the session that changed.
 Object getValue()
          Returns the value of the attribute that has been added, removed or replaced.
 
类方法继承 java.util.EventObject
getSource, toString
 
类方法继承 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

构造器详细信息

HttpSessionBindingEvent

public HttpSessionBindingEvent(HttpSession session,
                               String name)
Constructs an event that notifies an object that it has been bound to or unbound from a session. To receive the event, the object must implement HttpSessionBindingListener.

参数:
session - the session to which the object is bound or unbound
name - the name with which the object is bound or unbound
另请参见:
getName(), getSession()


HttpSessionBindingEvent

public HttpSessionBindingEvent(HttpSession session,
                               String name,
                               Object value)
Constructs an event that notifies an object that it has been bound to or unbound from a session. To receive the event, the object must implement HttpSessionBindingListener.

参数:
session - the session to which the object is bound or unbound
name - the name with which the object is bound or unbound
另请参见:
getName(), getSession()

方法详细信息

getSession

public HttpSession getSession()
Return the session that changed.

重写:
getSession in class HttpSessionEvent

getName

public String getName()
Returns the name with which the attribute is bound to or unbound from the session.

返回:
a string specifying the name with which the object is bound to or unbound from the session

getValue

public Object getValue()
Returns the value of the attribute that has been added, removed or replaced. If the attribute was added (or bound), this is the value of the attribute. If the attribute was removed (or unbound), this is the value of the removed attribute. If the attribute was replaced, this is the old value of the attribute.

从以下版本开始:
2.3

Java EE 5 SDK

深圳电信培训中心.徐海蛟老师.


提交错误或意见

版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。深圳电信培训中心.徐海蛟老师教学参考.