Class for creating and managing HTTP Requests.
| Name | Description | Return Type |
|---|---|---|
getHttpMethod() |
HttpMethod for the http request. | HttpMethod |
getHeaders() |
Headers for the http request. | Headers |
getQueryUrl() |
Query url for the http request. | String |
getParameters() |
Parameters for the http request. | List<SimpleEntry<String, Object>> |
getQueryParameters() |
Query parameters for the http request. | Map<String, Object> |
addQueryParameter(String key, Object value) |
Add Query parameter in http request. | void |