Uses of Class
org.springframework.http.HttpCookie
Packages that use HttpCookie
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 server contracts.
Mock objects for the functional web framework.
Provides the types that make up Spring's functional web framework for Reactive environments.
Classes supporting the
org.springframework.web.reactive.function.server
package.Abstractions and support classes for reactive WebSocket interactions.
-
Uses of HttpCookie in org.springframework.http
Subclasses of HttpCookie in org.springframework.httpModifier and TypeClassDescriptionfinal class
AnHttpCookie
subclass with the additional attributes allowed in the "Set-Cookie" response header. -
Uses of HttpCookie in org.springframework.http.client.reactive
Methods in org.springframework.http.client.reactive that return types with arguments of type HttpCookieModifier and TypeMethodDescriptionAbstractClientHttpRequest.getCookies()
ClientHttpRequest.getCookies()
Return a mutable map of request cookies to send to the server.ClientHttpRequestDecorator.getCookies()
-
Uses of HttpCookie in org.springframework.http.server.reactive
Methods in org.springframework.http.server.reactive that return types with arguments of type HttpCookieModifier and TypeMethodDescriptionAbstractServerHttpRequest.getCookies()
ServerHttpRequest.getCookies()
Return a read-only map of cookies sent by the client.ServerHttpRequestDecorator.getCookies()
protected abstract MultiValueMap<String,
HttpCookie> AbstractServerHttpRequest.initCookies()
Obtain the cookies from the underlying "native" request and adapt those to anHttpCookie
map. -
Uses of HttpCookie in org.springframework.mock.http.server.reactive
Methods in org.springframework.mock.http.server.reactive that return types with arguments of type HttpCookieModifier and TypeMethodDescriptionprotected MultiValueMap<String,
HttpCookie> MockServerHttpRequest.initCookies()
Methods in org.springframework.mock.http.server.reactive with parameters of type HttpCookieModifier and TypeMethodDescriptionMockServerHttpRequest.BaseBuilder.cookie
(HttpCookie... cookie) Add one or more cookies.Method parameters in org.springframework.mock.http.server.reactive with type arguments of type HttpCookieModifier and TypeMethodDescriptionMockServerHttpRequest.BaseBuilder.cookies
(MultiValueMap<String, HttpCookie> cookies) Add the given cookies. -
Uses of HttpCookie in org.springframework.mock.web.reactive.function.server
Methods in org.springframework.mock.web.reactive.function.server that return types with arguments of type HttpCookieMethods in org.springframework.mock.web.reactive.function.server with parameters of type HttpCookieMethod parameters in org.springframework.mock.web.reactive.function.server with type arguments of type HttpCookieModifier and TypeMethodDescriptionMockServerRequest.Builder.cookies
(MultiValueMap<String, HttpCookie> cookies) -
Uses of HttpCookie in org.springframework.web.reactive.function.server
Methods in org.springframework.web.reactive.function.server that return types with arguments of type HttpCookieMethod parameters in org.springframework.web.reactive.function.server with type arguments of type HttpCookieModifier and TypeMethodDescriptionServerRequest.Builder.cookies
(Consumer<MultiValueMap<String, HttpCookie>> cookiesConsumer) Manipulate this request's cookies with the given consumer. -
Uses of HttpCookie in org.springframework.web.reactive.function.server.support
Methods in org.springframework.web.reactive.function.server.support that return types with arguments of type HttpCookie -
Uses of HttpCookie in org.springframework.web.reactive.socket
Methods in org.springframework.web.reactive.socket that return types with arguments of type HttpCookieModifier and TypeMethodDescriptionHandshakeInfo.getCookies()
For a server session this returns the server request cookies from the handshake request.Constructor parameters in org.springframework.web.reactive.socket with type arguments of type HttpCookieModifierConstructorDescriptionHandshakeInfo
(URI uri, HttpHeaders headers, MultiValueMap<String, HttpCookie> cookies, reactor.core.publisher.Mono<Principal> principal, String protocol, InetSocketAddress remoteAddress, Map<String, Object> attributes, String logPrefix) Constructor targeting server-side use with extra information such as the cookies, remote address, attributes, and a log prefix.