@API(status=STABLE)
public interface RequestArguments
| Modifier and Type | Interface and Description |
|---|---|
static interface |
RequestArguments.Entity |
URI getBaseUrl()
UrlResolution getUrlResolution()
org.springframework.http.HttpMethod getMethod()
String getUriTemplate()
URI getUri()
URI getRequestUri()
Object getBody()
RequestArguments.Entity getEntity()
Route getRoute()
RequestArguments withBaseUrl(@Nullable URI baseUrl)
RequestArguments withUrlResolution(@Nullable UrlResolution resolution)
RequestArguments withMethod(@Nullable org.springframework.http.HttpMethod method)
RequestArguments withUriTemplate(@Nullable String uriTemplate)
RequestArguments replaceUriVariables(List<Object> uriVariables)
RequestArguments withUri(@Nullable URI uri)
<T> RequestArguments withAttribute(Attribute<T> attribute, T value)
RequestArguments withQueryParam(String name, String value)
RequestArguments withQueryParams(Map<String,? extends Collection<String>> queryParams)
RequestArguments withoutQueryParam(String name)
RequestArguments replaceQueryParams(Map<String,? extends Collection<String>> queryParams)
RequestArguments withHeader(String name, String value)
RequestArguments withHeaders(Map<String,? extends Collection<String>> headers)
RequestArguments withoutHeader(String name)
RequestArguments replaceHeaders(Map<String,? extends Collection<String>> headers)
RequestArguments withBody(@Nullable Object body)
RequestArguments withEntity(@Nullable RequestArguments.Entity entity)
RequestArguments withRoute(Route route)
static RequestArguments create()
Copyright © 2015–2020 Zalando SE. All rights reserved.