Uses of Class
org.springframework.http.ResponseCookie
Packages that use ResponseCookie 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 includingClientHttpRequest
andClientHttpResponse
as well as aClientHttpConnector
.org.springframework.http.server.reactive Abstractions for reactive HTTP server support including aServerHttpRequest
andServerHttpResponse
along with anHttpHandler
for processing.org.springframework.mock.http.client.reactive Mock implementations of reactive HTTP client contracts.org.springframework.test.web.reactive.server Support for testing Spring WebFlux server endpoints viaWebTestClient
.org.springframework.web.reactive.function.client Provides a reactiveWebClient
that builds on top of theorg.springframework.http.client.reactive
reactive HTTP adapter layer.org.springframework.web.reactive.function.client.support Classes supporting theorg.springframework.web.reactive.function.client
package.org.springframework.web.reactive.function.server Provides the types that make up Spring's functional web framework for Reactive environments.Uses of ResponseCookie in org.springframework.http
Methods in org.springframework.http that return ResponseCookie Modifier and Type Method Description ResponseCookie
ResponseCookie.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 ResponseCookie Modifier and Type Method Description MultiValueMap<String,ResponseCookie>
ClientHttpResponse. getCookies()
Return a read-only map of response cookies received from the server.MultiValueMap<String,ResponseCookie>
ClientHttpResponseDecorator. getCookies()
Uses of ResponseCookie in org.springframework.http.server.reactive
Methods in org.springframework.http.server.reactive that return types with arguments of type ResponseCookie Modifier and Type Method Description MultiValueMap<String,ResponseCookie>
AbstractServerHttpResponse. getCookies()
MultiValueMap<String,ResponseCookie>
ServerHttpResponse. getCookies()
Return a mutable map with the cookies to send to the server.MultiValueMap<String,ResponseCookie>
ServerHttpResponseDecorator. getCookies()
Methods in org.springframework.http.server.reactive with parameters of type ResponseCookie Modifier and Type Method Description void
AbstractServerHttpResponse. addCookie(ResponseCookie cookie)
void
ServerHttpResponse. addCookie(ResponseCookie cookie)
Add the givenResponseCookie
.void
ServerHttpResponseDecorator. addCookie(ResponseCookie cookie)
Uses of ResponseCookie in org.springframework.mock.http.client.reactive
Methods in org.springframework.mock.http.client.reactive that return types with arguments of type ResponseCookie Modifier and Type Method Description MultiValueMap<String,ResponseCookie>
MockClientHttpResponse. getCookies()
Uses of ResponseCookie in org.springframework.test.web.reactive.server
Methods in org.springframework.test.web.reactive.server that return types with arguments of type ResponseCookie Modifier and Type Method Description MultiValueMap<String,ResponseCookie>
ExchangeResult. getResponseCookies()
Return response cookies received from the server.Uses of ResponseCookie in org.springframework.web.reactive.function.client
Methods in org.springframework.web.reactive.function.client that return types with arguments of type ResponseCookie Modifier and Type Method Description MultiValueMap<String,ResponseCookie>
ClientResponse. cookies()
Return the cookies of this response.Method parameters in org.springframework.web.reactive.function.client with type arguments of type ResponseCookie Modifier and Type Method Description ClientResponse.Builder
ClientResponse.Builder. cookies(Consumer<MultiValueMap<String,ResponseCookie>> cookiesConsumer)
Manipulate this response's cookies with the given consumer.Uses of ResponseCookie in org.springframework.web.reactive.function.client.support
Methods in org.springframework.web.reactive.function.client.support that return types with arguments of type ResponseCookie Modifier and Type Method Description MultiValueMap<String,ResponseCookie>
ClientResponseWrapper. cookies()
Uses of ResponseCookie in org.springframework.web.reactive.function.server
Methods in org.springframework.web.reactive.function.server that return types with arguments of type ResponseCookie Modifier and Type Method Description MultiValueMap<String,ResponseCookie>
ServerResponse. cookies()
Return the cookies of this response.Methods in org.springframework.web.reactive.function.server with parameters of type ResponseCookie Modifier and Type Method Description EntityResponse.Builder<T>
EntityResponse.Builder. cookie(ResponseCookie cookie)
Add the given cookie to the response.RenderingResponse.Builder
RenderingResponse.Builder. cookie(ResponseCookie cookie)
Add the given cookie to the response.B
ServerResponse.HeadersBuilder. cookie(ResponseCookie cookie)
Add the given cookie to the response.Method parameters in org.springframework.web.reactive.function.server with type arguments of type ResponseCookie Modifier and Type Method Description EntityResponse.Builder<T>
EntityResponse.Builder. cookies(Consumer<MultiValueMap<String,ResponseCookie>> cookiesConsumer)
Manipulate this response's cookies with the given consumer.RenderingResponse.Builder
RenderingResponse.Builder. cookies(Consumer<MultiValueMap<String,ResponseCookie>> cookiesConsumer)
Manipulate this response's cookies with the given consumer.B
ServerResponse.HeadersBuilder. cookies(Consumer<MultiValueMap<String,ResponseCookie>> cookiesConsumer)
Manipulate this response's cookies with the given consumer.