Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 641 Bytes

File metadata and controls

16 lines (11 loc) · 641 Bytes

HttpRequest

Class for creating and managing HTTP Requests.

Methods

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