content
The Request Body.
final RequestHeadersRequestInformation(HttpMethod method,
String urlTemplate,
Map<String,Object> pathParameters) voidaddQueryParameter(String name,
Object value) voidaddQueryParameters(QueryParameters parameters) voidaddRequestOptions(Collection<RequestOption> options) <T extends BaseRequestConfiguration>
void<T extends BaseRequestConfiguration>
voidconfigure(Consumer<T> requestConfiguration,
Supplier<T> configurationFactory,
Function<T,QueryParameters> queryParametersGetter) getUri()voidremoveQueryParameter(String name) voidremoveRequestOptions(RequestOption... options) <T extends Parsable>
voidsetContentFromParsable(RequestAdapter requestAdapter,
String contentType,
T value) <T extends Parsable>
voidsetContentFromParsable(RequestAdapter requestAdapter,
String contentType,
T[] values) <T> voidsetContentFromScalar(RequestAdapter requestAdapter,
String contentType,
T value) <T> voidsetContentFromScalarCollection(RequestAdapter requestAdapter,
String contentType,
T[] values) voidsetResponseHandler(ResponseHandler responseHandler) voidsetStreamContent(InputStream value) voidsetStreamContent(InputStream value,
String contentType) voidmethod - The HTTP method for the request.urlTemplate - The url template for the request.pathParameters - The path parameters for the request.T - The type of the request configuration.requestConfiguration - The request configuration to apply to the request information.configurationFactory - The factory to create the request configuration from.T - The type of the request configuration.requestConfiguration - The request configuration to apply to the request information.configurationFactory - The factory to create the request configuration from.queryParametersGetter - The function to get the query parameters from the request configuration.URISyntaxException - when the uri template is invalid.IllegalStateException - when the baseurl template parameter is missing from the path parameters.uri - the URI of the request.parameters - The object to add the query parameters from.name - The name of the query parameter.value - The value to add the query parameters.name - The name of the query parameter to remove.options - the request options to add.options - the request option to remove.responseHandler - the response handler to add to the request.setStreamContent(InputStream, String) instead.value - the binary streamvalue - the binary streamcontentType - the content type of the stream.T - the model type.requestAdapter - The adapter service to get the serialization writer from.contentType - the content type.values - the models.T - the model type.requestAdapter - The adapter service to get the serialization writer from.contentType - the content type.value - the model.T - the model type.requestAdapter - The adapter service to get the serialization writer from.contentType - the content type.value - the scalar values to serialize.T - the model type.requestAdapter - The adapter service to get the serialization writer from.contentType - the content type.values - the scalar values to serialize.
setStreamContent(InputStream, String)instead.