Uses of Class
org.springframework.http.ResponseCookie
Packages that use ResponseCookie
Package
Description
Contains a basic abstraction over client/server-side HTTP.
Abstractions for reactive HTTP client support including
ClientHttpRequest
and
ClientHttpResponse
as well as a
ClientHttpConnector
.Abstractions for reactive HTTP server support including a
ServerHttpRequest
and
ServerHttpResponse
along with an
HttpHandler
for processing.-
Uses of ResponseCookie in org.springframework.http
Methods in org.springframework.http that return ResponseCookieModifier and TypeMethodDescriptionResponseCookie.ResponseCookieBuilder.build()
Create the HttpCookie. -
Uses of ResponseCookie in org.springframework.http.client.reactive
Methods in org.springframework.http.client.reactive that return types with arguments of type ResponseCookieModifier and TypeMethodDescriptionorg.springframework.util.MultiValueMap<String,
ResponseCookie> AbstractClientHttpResponse.getCookies()
org.springframework.util.MultiValueMap<String,
ResponseCookie> ClientHttpResponse.getCookies()
Return a read-only map of response cookies received from the server.org.springframework.util.MultiValueMap<String,
ResponseCookie> ClientHttpResponseDecorator.getCookies()
Constructor parameters in org.springframework.http.client.reactive with type arguments of type ResponseCookieModifierConstructorDescriptionprotected
AbstractClientHttpResponse
(HttpStatusCode statusCode, HttpHeaders headers, org.springframework.util.MultiValueMap<String, ResponseCookie> cookies, reactor.core.publisher.Flux<org.springframework.core.io.buffer.DataBuffer> body) -
Uses of ResponseCookie in org.springframework.http.server.reactive
Methods in org.springframework.http.server.reactive that return types with arguments of type ResponseCookieModifier and TypeMethodDescriptionorg.springframework.util.MultiValueMap<String,
ResponseCookie> AbstractServerHttpResponse.getCookies()
org.springframework.util.MultiValueMap<String,
ResponseCookie> ServerHttpResponse.getCookies()
Return a mutable map with the cookies to send to the server.org.springframework.util.MultiValueMap<String,
ResponseCookie> ServerHttpResponseDecorator.getCookies()
Methods in org.springframework.http.server.reactive with parameters of type ResponseCookieModifier and TypeMethodDescriptionvoid
AbstractServerHttpResponse.addCookie
(ResponseCookie cookie) void
ServerHttpResponse.addCookie
(ResponseCookie cookie) Add the givenResponseCookie
.void
ServerHttpResponseDecorator.addCookie
(ResponseCookie cookie)