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 includingClientHttpRequestandClientHttpResponseas well as aClientHttpConnector.org.springframework.http.server.reactive Abstractions for reactive HTTP server support including aServerHttpRequestandServerHttpResponsealong with anHttpHandlerfor 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 reactiveWebClientthat builds on top of theorg.springframework.http.client.reactivereactive HTTP adapter layer.org.springframework.web.reactive.function.client.support Classes supporting theorg.springframework.web.reactive.function.clientpackage.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 ResponseCookieResponseCookie.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 voidAbstractServerHttpResponse. addCookie(ResponseCookie cookie)voidServerHttpResponse. addCookie(ResponseCookie cookie)Add the givenResponseCookie.voidServerHttpResponseDecorator. 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.BuilderClientResponse.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.BuilderRenderingResponse.Builder. cookie(ResponseCookie cookie)Add the given cookie to the response.BServerResponse.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.BuilderRenderingResponse.Builder. cookies(Consumer<MultiValueMap<String,ResponseCookie>> cookiesConsumer)Manipulate this response's cookies with the given consumer.BServerResponse.HeadersBuilder. cookies(Consumer<MultiValueMap<String,ResponseCookie>> cookiesConsumer)Manipulate this response's cookies with the given consumer.