Class HttpSessionBindingEvent

java.lang.Object
java.util.EventObject
javax.servlet.http.HttpSessionEvent
javax.servlet.http.HttpSessionBindingEvent
All Implemented Interfaces:
java.io.Serializable

public class HttpSessionBindingEvent
extends HttpSessionEvent
The HttpSessionBindingEvent API.
Author:
Manfred Riem ([email protected])
See Also:
Serialized Form
  • Field Summary

    Fields inherited from class java.util.EventObject

    source
  • Constructor Summary

    Constructors 
    Constructor Description
    HttpSessionBindingEvent​(HttpSession session, java.lang.String name)
    Constructor.
    HttpSessionBindingEvent​(HttpSession session, java.lang.String name, java.lang.Object value)
    Constructor.
  • Method Summary

    Modifier and Type Method Description
    java.lang.String getName()
    Get the name.
    HttpSession getSession()
    Get the HTTP session.
    java.lang.Object getValue()
    Get the value.

    Methods inherited from class java.util.EventObject

    getSource, toString

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • HttpSessionBindingEvent

      public HttpSessionBindingEvent​(HttpSession session, java.lang.String name)
      Constructor.
      Parameters:
      session - the HTTP session.
      name - the name.
    • HttpSessionBindingEvent

      public HttpSessionBindingEvent​(HttpSession session, java.lang.String name, java.lang.Object value)
      Constructor.
      Parameters:
      session - the HTTP session.
      name - the name.
      value - the value.
  • Method Details