Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 482 Bytes

http-response.md

File metadata and controls

19 lines (12 loc) · 482 Bytes

HttpResponse Class

Class to hold HTTP Response.

Constructors

Name Description
HttpResponse(int code, Headers headers, InputStream rawBody) Constructor for HttpResponse.

Methods

Name Description Return Type
getStatusCode() HTTP Status code of the http response.. int
getHeaders() Headers of the http response. Headers
getRawBody() Raw body of the http response. InputStream