Interface HttpResponse
@Immutable
public interface HttpResponse
A HTTP response.
- Since:
- 1.59.0
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionbyte[]The HTTP response body bytes.intThe HTTP status code.The HTTP status message.
-
Method Details
-
getStatusCode
int getStatusCode()The HTTP status code. -
getStatusMessage
String getStatusMessage()The HTTP status message. -
getResponseBody
byte[] getResponseBody()The HTTP response body bytes.
-