Interface Response

All Known Subinterfaces:
ContentResponse
All Known Implementing Classes:
HttpContentResponse, HttpResponse

public interface Response

Response represents an HTTP response and offers methods to retrieve status code, HTTP version and headers.

Response objects are passed as parameters to Response.Listener callbacks, or as future result of Request.send().

Response objects do not contain getters for the response content, because it may be too large to fit into memory. The response content should be retrieved via content events, or via utility classes such as BufferingResponseListener.

  • Method Details

    • getRequest

      Request getRequest()
      Returns:
      the request associated with this response
    • getListeners

      <T extends Response.ResponseListener> List<T> getListeners(Class<T> listenerClass)
      Type Parameters:
      T - the type of class
      Parameters:
      listenerClass - the listener class
      Returns:
      the response listener passed to Request.send(org.eclipse.jetty.client.api.Response.CompleteListener)
    • getVersion

      org.eclipse.jetty.http.HttpVersion getVersion()
      Returns:
      the HTTP version of this response, such as "HTTP/1.1"
    • getStatus

      int getStatus()
      Returns:
      the HTTP status code of this response, such as 200 or 404
    • getReason

      String getReason()
      Returns:
      the HTTP reason associated to the getStatus()
    • getHeaders

      org.eclipse.jetty.http.HttpFields getHeaders()
      Returns:
      the headers of this response
    • abort

      boolean abort(Throwable cause)
      Attempts to abort the receive of this response.
      Parameters:
      cause - the abort cause, must not be null
      Returns:
      whether the abort succeeded