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.AssertJ support for WebTestClient.
Support for testing Spring MVC applications via
RestTestClient with
MockMvc for server request handling.Support classes for testing web applications.
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.Methods in org.springframework.http that return types with arguments of type ResponseCookieModifier and TypeMethodDescriptionParse the given header.default MultiValueMap<String, ResponseCookie> Convenience method to parse a list of headers into aMultiValueMap. -
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 ResponseCookieModifierConstructorDescriptionprotectedAbstractClientHttpResponse(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 TypeMethodDescriptionvoidAbstractServerHttpResponse.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 -
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 TypeMethodDescriptionprotected MultiValueMap<String, ResponseCookie> CookieAssertions.getResponseCookies()ExchangeResult.getResponseCookies()Return response cookies received from the server. -
Uses of ResponseCookie in org.springframework.test.web.reactive.server.assertj
Subclasses with type arguments of type ResponseCookie in org.springframework.test.web.reactive.server.assertjModifier and TypeClassDescriptionclassAssertJ assertions that can be applied tocookies.classAssertJ assertions that can be applied tocookies.Method parameters in org.springframework.test.web.reactive.server.assertj with type arguments of type ResponseCookieModifier and TypeMethodDescriptionResponseCookieMapAssert.hasCookieSatisfying(String name, Consumer<ResponseCookie> cookieRequirements) Verify that the actual cookies contain a cookie with the givennamethat satisfies the givencookieRequirements.Constructors in org.springframework.test.web.reactive.server.assertj with parameters of type ResponseCookie -
Uses of ResponseCookie in org.springframework.test.web.servlet.client
Methods in org.springframework.test.web.servlet.client that return types with arguments of type ResponseCookieModifier and TypeMethodDescriptionprotected MultiValueMap<String, ResponseCookie> CookieAssertions.getResponseCookies()ExchangeResult.getResponseCookies()Return response cookies received from the server. -
Uses of ResponseCookie in org.springframework.test.web.support
Methods in org.springframework.test.web.support that return ResponseCookieMethods in org.springframework.test.web.support that return types with arguments of type ResponseCookieModifier and TypeMethodDescriptionprotected abstract MultiValueMap<String, ResponseCookie> AbstractCookieAssertions.getResponseCookies()Subclasses must implement this to provide access to response cookies. -
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.