Package | Description |
---|---|
org.springframework.http |
Contains a basic abstraction over client/server-side HTTP.
|
Modifier and Type | Interface and Description |
---|---|
static interface |
RequestEntity.HeadersBuilder<B extends RequestEntity.HeadersBuilder<B>>
Defines a builder that adds headers to the request entity.
|
Modifier and Type | Interface and Description |
---|---|
static interface |
RequestEntity.BodyBuilder
Defines a builder that adds a body to the response entity.
|
Modifier and Type | Method and Description |
---|---|
static RequestEntity.HeadersBuilder<?> |
RequestEntity.delete(String uriTemplate,
Object... uriVariables)
Create an HTTP DELETE builder with the given string base uri template.
|
static RequestEntity.HeadersBuilder<?> |
RequestEntity.delete(URI url)
Create an HTTP DELETE builder with the given url.
|
static RequestEntity.HeadersBuilder<?> |
RequestEntity.get(String uriTemplate,
Object... uriVariables)
Create an HTTP GET builder with the given string base uri template.
|
static RequestEntity.HeadersBuilder<?> |
RequestEntity.get(URI url)
Create an HTTP GET builder with the given url.
|
static RequestEntity.HeadersBuilder<?> |
RequestEntity.head(String uriTemplate,
Object... uriVariables)
Create an HTTP HEAD builder with the given string base uri template.
|
static RequestEntity.HeadersBuilder<?> |
RequestEntity.head(URI url)
Create an HTTP HEAD builder with the given url.
|
static RequestEntity.HeadersBuilder<?> |
RequestEntity.options(String uriTemplate,
Object... uriVariables)
Creates an HTTP OPTIONS builder with the given string base uri template.
|
static RequestEntity.HeadersBuilder<?> |
RequestEntity.options(URI url)
Creates an HTTP OPTIONS builder with the given url.
|