Uses of Class
org.springframework.http.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.Mock implementations of reactive HTTP client contracts.
Contains built-in
ResponseCreator
implementations.Support for testing Spring WebFlux server endpoints via
WebTestClient
.Provides a reactive
WebClient
that builds on top of the
org.springframework.http.client.reactive
reactive HTTP adapter layer.Classes supporting the
org.springframework.web.reactive.function.client
package.Provides the types that make up Spring's functional web framework for Reactive environments.
-
Uses of ResponseCookie in org.springframework.http
Modifier and TypeMethodDescriptionResponseCookie.ResponseCookieBuilder.build()
Create the HttpCookie. -
Uses of ResponseCookie in org.springframework.http.client.reactive
Modifier and TypeMethodDescriptionAbstractClientHttpResponse.getCookies()
ClientHttpResponse.getCookies()
Return a read-only map of response cookies received from the server.ClientHttpResponseDecorator.getCookies()
ModifierConstructorDescriptionprotected
AbstractClientHttpResponse
(HttpStatusCode statusCode, HttpHeaders headers, MultiValueMap<String, ResponseCookie> cookies, reactor.core.publisher.Flux<DataBuffer> body) -
Uses of ResponseCookie in org.springframework.http.server.reactive
Modifier and TypeMethodDescriptionAbstractServerHttpResponse.getCookies()
ServerHttpResponse.getCookies()
Return a mutable map with the cookies to send to the server.ServerHttpResponseDecorator.getCookies()
Modifier and TypeMethodDescriptionvoid
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
-
Uses of ResponseCookie in org.springframework.test.web.client.response
Modifier and TypeMethodDescriptionDefaultResponseCreator.cookies
(ResponseCookie... cookies) Add one or more cookies.Modifier and TypeMethodDescriptionDefaultResponseCreator.cookies
(MultiValueMap<String, ResponseCookie> multiValueMap) Copy all cookies from the givenMultiValueMap
. -
Uses of ResponseCookie in org.springframework.test.web.reactive.server
Modifier and TypeMethodDescriptionExchangeResult.getResponseCookies()
Return response cookies received from the server. -
Uses of ResponseCookie in org.springframework.web.reactive.function.client
Modifier and TypeMethodDescriptionClientResponse.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
-
Uses of ResponseCookie in org.springframework.web.reactive.function.server
Modifier and TypeMethodDescriptionEntityResponse.Builder.cookie
(ResponseCookie cookie) Add the given cookie to the response.RenderingResponse.Builder.cookie
(ResponseCookie cookie) Add the given cookie to the response.ServerResponse.HeadersBuilder.cookie
(ResponseCookie cookie) Add the given cookie to the response.Modifier and TypeMethodDescriptionEntityResponse.Builder.cookies
(Consumer<MultiValueMap<String, ResponseCookie>> cookiesConsumer) Manipulate this response's cookies with the given consumer.RenderingResponse.Builder.cookies
(Consumer<MultiValueMap<String, ResponseCookie>> cookiesConsumer) Manipulate this response's cookies with the given consumer.ServerResponse.HeadersBuilder.cookies
(Consumer<MultiValueMap<String, ResponseCookie>> cookiesConsumer) Manipulate this response's cookies with the given consumer.