Class HttpCoreContext

java.lang.Object
org.apache.hc.core5.http.protocol.HttpCoreContext
All Implemented Interfaces:
HttpContext

public class HttpCoreContext extends Object implements HttpContext
Implementation of HttpContext that provides convenience setters for user assignable attributes and getter for readable attributes.
Since:
4.3
  • Field Details

  • Constructor Details

    • HttpCoreContext

      public HttpCoreContext(HttpContext context)
    • HttpCoreContext

      public HttpCoreContext()
  • Method Details

    • create

      public static HttpCoreContext create()
    • adapt

      public static HttpCoreContext adapt(HttpContext context)
    • getProtocolVersion

      public ProtocolVersion getProtocolVersion()
      Description copied from interface: HttpContext
      Returns protocol version used in this context.
      Specified by:
      getProtocolVersion in interface HttpContext
      Since:
      5.0
    • setProtocolVersion

      public void setProtocolVersion(ProtocolVersion version)
      Description copied from interface: HttpContext
      Sets protocol version used in this context.
      Specified by:
      setProtocolVersion in interface HttpContext
      Since:
      5.0
    • 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.
    • setAttribute

      public Object 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.
      Returns:
      the previous value associated with id, or null if there was no mapping for id.
    • 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.
    • getAttribute

      public <T> T getAttribute(String attribname, Class<T> clazz)
    • getSSLSession

      public SSLSession getSSLSession()
      Since:
      5.0
    • getEndpointDetails

      public EndpointDetails getEndpointDetails()
      Since:
      5.0
    • getRequest

      public HttpRequest getRequest()
    • getResponse

      public HttpResponse getResponse()
    • toString

      public String toString()
      Overrides:
      toString in class Object