KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > javax > servlet > http > HttpSessionBindingEvent

javax.servlet.http
Class HttpSessionBindingEvent

java.lang.Object
  extended byjava.util.EventObject
      extended byjavax.servlet.http.HttpSessionEvent
          extended byjavax.servlet.http.HttpSessionBindingEvent
All Implemented Interfaces:
Serializable
See Also:
Top Examples, Source Code, HttpSession, HttpSessionBindingListener, HttpSessionAttributeListener

public String getName()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public HttpSession getSession()
See Also:
HttpSessionEvent
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Object getValue()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public HttpSessionBindingEvent(HttpSession session,
                               String name)
See Also:
getSession(), getName(), HttpSessionBindingListener
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public HttpSessionBindingEvent(HttpSession session,
                               String name,
                               Object value)
See Also:
getSession(), getName(), HttpSessionBindingListener
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags