Class HttpResponse

java.lang.Object
org.eclipse.jetty.client.transport.HttpResponse
All Implemented Interfaces:
Response

public class HttpResponse extends Object implements Response
  • Constructor Details Link icon

    • HttpResponse Link icon

      public HttpResponse(Request request)
  • Method Details Link icon

    • getRequest Link icon

      public Request getRequest()
      Specified by:
      getRequest in interface Response
      Returns:
      the request associated with this response
    • getVersion Link icon

      public HttpVersion getVersion()
      Specified by:
      getVersion in interface Response
      Returns:
      the HTTP version of this response, such as "HTTP/1.1"
    • version Link icon

      public HttpResponse version(HttpVersion version)
    • getStatus Link icon

      public int getStatus()
      Specified by:
      getStatus in interface Response
      Returns:
      the HTTP status code of this response, such as 200 or 404
    • status Link icon

      public HttpResponse status(int status)
    • getReason Link icon

      public String getReason()
      Specified by:
      getReason in interface Response
      Returns:
      the HTTP reason associated to the Response.getStatus()
    • reason Link icon

      public HttpResponse reason(String reason)
    • getHeaders Link icon

      public HttpFields getHeaders()
      Description copied from interface: Response

      Returns the headers of this response.

      Some headers sent by the server may not be present, or be present but modified, while the content is being processed. A typical example is the Content-Length header when the content is sent compressed by the server and automatically decompressed by the client: the Content-Length header will be removed.

      Similarly, the Content-Encoding header may be removed or modified, as the content is decoded by the client.

      Specified by:
      getHeaders in interface Response
      Returns:
      the headers of this response
    • clearHeaders Link icon

      public void clearHeaders()
    • addHeader Link icon

      public HttpResponse addHeader(HttpField header)
    • headers Link icon

      public HttpResponse headers(Consumer<HttpFields.Mutable> consumer)
    • getTrailers Link icon

      public HttpFields getTrailers()
      Specified by:
      getTrailers in interface Response
      Returns:
      the trailers of this response
    • trailer Link icon

      public HttpResponse trailer(HttpField trailer)
    • abort Link icon

      public CompletableFuture<Boolean> abort(Throwable cause)
      Description copied from interface: Response
      Attempts to abort the receive of this response.
      Specified by:
      abort in interface Response
      Parameters:
      cause - the abort cause, must not be null
      Returns:
      whether the abort succeeded
    • toString Link icon

      public String toString()
      Overrides:
      toString in class Object