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 | Method and Description |
---|---|
ResponseCookie |
ResponseCookie.ResponseCookieBuilder.build()
Create the HttpCookie.
|
Modifier and Type | Method and Description |
---|---|
org.springframework.util.MultiValueMap<String,ResponseCookie> |
ClientHttpResponseDecorator.getCookies() |
org.springframework.util.MultiValueMap<String,ResponseCookie> |
ClientHttpResponse.getCookies()
Return a read-only map of response cookies received from the server.
|
Modifier and Type | Method and Description |
---|---|
org.springframework.util.MultiValueMap<String,ResponseCookie> |
AbstractServerHttpResponse.getCookies() |
org.springframework.util.MultiValueMap<String,ResponseCookie> |
ServerHttpResponseDecorator.getCookies() |
org.springframework.util.MultiValueMap<String,ResponseCookie> |
ServerHttpResponse.getCookies()
Return a mutable map with the cookies to send to the server.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractServerHttpResponse.addCookie(ResponseCookie cookie) |
void |
ServerHttpResponseDecorator.addCookie(ResponseCookie cookie) |
void |
ServerHttpResponse.addCookie(ResponseCookie cookie)
Add the given
ResponseCookie . |