Package | Description |
---|---|
org.springframework.http |
Contains a basic abstraction over client/server-side HTTP.
|
org.springframework.http.client.reactive |
Abstractions for reactive HTTP client support including
ClientHttpRequest and
ClientHttpResponse as well as a
ClientHttpConnector . |
org.springframework.http.server.reactive |
Abstractions for reactive HTTP server support including a
ServerHttpRequest and
ServerHttpResponse along with an
HttpHandler for processing. |
Modifier and Type | Class and Description |
---|---|
class |
ResponseCookie
An
HttpCookie subclass with the additional attributes allowed in
the "Set-Cookie" response header. |
Modifier and Type | Method and Description |
---|---|
org.springframework.util.MultiValueMap<String,HttpCookie> |
ClientHttpRequest.getCookies()
Return a mutable map of request cookies to send to the server.
|
org.springframework.util.MultiValueMap<String,HttpCookie> |
ClientHttpRequestDecorator.getCookies() |
org.springframework.util.MultiValueMap<String,HttpCookie> |
AbstractClientHttpRequest.getCookies() |
Modifier and Type | Method and Description |
---|---|
org.springframework.util.MultiValueMap<String,HttpCookie> |
ServerHttpRequest.getCookies()
Return a read-only map of cookies sent by the client.
|
org.springframework.util.MultiValueMap<String,HttpCookie> |
ServerHttpRequestDecorator.getCookies() |
org.springframework.util.MultiValueMap<String,HttpCookie> |
AbstractServerHttpRequest.getCookies() |
protected abstract org.springframework.util.MultiValueMap<String,HttpCookie> |
AbstractServerHttpRequest.initCookies()
Obtain the cookies from the underlying "native" request and adapt those to
an
HttpCookie map. |