Class SessionHttpContext

java.lang.Object
org.apache.http.impl.nio.SessionHttpContext
All Implemented Interfaces:
HttpContext

class SessionHttpContext extends Object implements HttpContext
  • Field Details

    • ioSession

      private final IOSession ioSession
  • Constructor Details

    • SessionHttpContext

      public SessionHttpContext(IOSession ioSession)
  • Method Details

    • getAttribute

      public Object getAttribute(String id)
      Description copied from interface: HttpContext
      Obtains attribute with the given name.
      Specified by:
      getAttribute in interface HttpContext
      Parameters:
      id - the attribute name.
      Returns:
      attribute value, or null if not set.
    • removeAttribute

      public Object removeAttribute(String id)
      Description copied from interface: HttpContext
      Removes attribute with the given name from the context.
      Specified by:
      removeAttribute in interface HttpContext
      Parameters:
      id - the attribute name.
      Returns:
      attribute value, or null if not set.
    • setAttribute

      public void setAttribute(String id, Object obj)
      Description copied from interface: HttpContext
      Sets value of the attribute with the given name.
      Specified by:
      setAttribute in interface HttpContext
      Parameters:
      id - the attribute name.
      obj - the attribute value.
    • toString

      public String toString()
      Overrides:
      toString in class Object
      Since:
      4.4.7