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.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
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 TypeMethodDescriptionAbstractClientHttpResponse.getCookies()
ClientHttpResponse.getCookies()
Return a read-only map of response cookies received from the server.ClientHttpResponseDecorator.getCookies()
Constructor parameters in org.springframework.http.client.reactive with type arguments of type ResponseCookieModifierConstructorDescriptionprotected
AbstractClientHttpResponse
(HttpStatusCode statusCode, HttpHeaders headers, MultiValueMap<String, ResponseCookie> cookies, reactor.core.publisher.Flux<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 TypeMethodDescriptionAbstractServerHttpResponse.getCookies()
ServerHttpResponse.getCookies()
Return a mutable map with the cookies to send to the server.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) -
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 -
Uses of ResponseCookie in org.springframework.test.web.client.response
Methods in org.springframework.test.web.client.response with parameters of type ResponseCookieModifier and TypeMethodDescriptionDefaultResponseCreator.cookies
(ResponseCookie... cookies) Add one or more cookies.Method parameters in org.springframework.test.web.client.response with type arguments of type ResponseCookieModifier and TypeMethodDescriptionDefaultResponseCreator.cookies
(MultiValueMap<String, ResponseCookie> multiValueMap) Copy all cookies from the givenMultiValueMap
. -
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 ResponseCookieModifier and TypeMethodDescriptionExchangeResult.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 ResponseCookieMethod parameters in org.springframework.web.reactive.function.client with type arguments of type ResponseCookieModifier 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
Methods in org.springframework.web.reactive.function.client.support that return types with arguments of type ResponseCookie -
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 ResponseCookieMethods in org.springframework.web.reactive.function.server with parameters of type ResponseCookieModifier 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.Method parameters in org.springframework.web.reactive.function.server with type arguments of type ResponseCookieModifier 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.