Response<T> Interface
Type Parameters
- T
The deserialized type of the response content, available from #getValue().
public interface Response
REST response with a strongly-typed content specified.
Method Summary
Modifier and Type | Method and Description |
---|---|
abstract
Http |
getHeaders()
Gets the headers from the HTTP response. |
abstract
Http |
getRequest()
Gets the HTTP request which resulted in this response. |
abstract int |
getStatusCode()
Gets the HTTP response status code. |
abstract T |
getValue()
Gets the deserialized value of the HTTP response. |
Method Details
getHeaders
public abstract HttpHeaders getHeaders()
Gets the headers from the HTTP response.
Returns:
getRequest
public abstract HttpRequest getRequest()
Gets the HTTP request which resulted in this response.
Returns:
getStatusCode
public abstract int getStatusCode()
Gets the HTTP response status code.
Returns:
getValue
public abstract T getValue()
Gets the deserialized value of the HTTP response.
Returns:
Applies to
Azure SDK for Java