RequestBodyEntity |
HttpRequestBody.body(byte[] body) |
|
RequestBodyEntity |
HttpRequestBody.body(java.io.InputStream body) |
|
RequestBodyEntity |
HttpRequestBody.body(java.lang.Object body) |
|
RequestBodyEntity |
HttpRequestBody.body(java.lang.String body) |
|
RequestBodyEntity |
HttpRequestBody.body(JSONElement body) |
Sugar method for body operation
|
RequestBodyEntity |
HttpRequestBody.body(JsonNode body) |
|
RequestBodyEntity |
HttpRequestUniBody.body(byte[] bodyBytes) |
|
RequestBodyEntity |
HttpRequestUniBody.body(java.io.InputStream inputStreamBody) |
|
RequestBodyEntity |
HttpRequestUniBody.body(java.lang.Object objectBody) |
|
RequestBodyEntity |
HttpRequestUniBody.body(java.lang.String bodyAsString) |
|
RequestBodyEntity |
HttpRequestUniBody.body(JSONElement jsonBody) |
|
RequestBodyEntity |
HttpRequestUniBody.body(JsonNode jsonBody) |
|
RequestBodyEntity |
HttpRequestWithBody.body(byte[] body) |
Set a byte array as the body of the request
|
RequestBodyEntity |
HttpRequestWithBody.body(java.io.InputStream body) |
Set a InputStream as the body
|
RequestBodyEntity |
HttpRequestWithBody.body(java.lang.Object body) |
Set a Object as the body of the request.
|
RequestBodyEntity |
HttpRequestWithBody.body(java.lang.String body) |
Set a String as the body of the request
|
RequestBodyEntity |
HttpRequestWithBody.body(JSONElement body) |
Set JSON on the body
|
RequestBodyEntity |
HttpRequestWithBody.body(JsonNode body) |
Set JSON on the body
|
RequestBodyEntity |
RequestBodyEntity.body(byte[] bodyBytes) |
Set a byte array as the body of the request
|
RequestBodyEntity |
RequestBodyEntity.body(java.io.InputStream body) |
Set a InputStream as the body
|
RequestBodyEntity |
RequestBodyEntity.body(java.lang.Object body) |
Set a Object as the body of the request.
|
RequestBodyEntity |
RequestBodyEntity.body(java.lang.String bodyAsString) |
Set a String as the body of the request
|
RequestBodyEntity |
RequestBodyEntity.body(JSONElement body) |
Set JSON on the body
|
RequestBodyEntity |
RequestBodyEntity.body(JsonNode jsonBody) |
Set JSON on the body
|
RequestBodyEntity |
HttpRequestUniBody.charset(java.nio.charset.Charset charset) |
|
RequestBodyEntity |
RequestBodyEntity.charset(java.nio.charset.Charset charset) |
Set the Charset encoding for the Content-Type.
|
RequestBodyEntity |
HttpRequestUniBody.contentType(java.lang.String type) |
|
RequestBodyEntity |
RequestBodyEntity.contentType(java.lang.String type) |
|
default RequestBodyEntity |
RequestBodyEntity.noCharset() |
Removes any Charset for the Content-Type for when servers cannot process it.
|
RequestBodyEntity |
HttpRequestUniBody.uploadMonitor(ProgressMonitor progressMonitor) |
|
RequestBodyEntity |
RequestBodyEntity.uploadMonitor(ProgressMonitor monitor) |
Set a Progress upload monitor suitable for drawing progress bars and whatnot.
|