Package com.auth0.net

Interface Response<T>

Type Parameters:
T - the type of the parsed response body.

public interface Response<T>
Represents the response of an HTTP request executed by Request.
  • Method Details

    • getHeaders

      Map<String,String> getHeaders()
      Returns:
      the HTTP response headers.
    • getBody

      T getBody()
      Returns:
      the response body.
    • getStatusCode

      int getStatusCode()
      Returns:
      the HTTP status code.