Uses of Class
org.springframework.http.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
Modifier 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
Modifier 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
Modifier 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
Modifier and TypeMethodDescriptionprotected MultiValueMap<String,
HttpCookie> MockServerHttpRequest.initCookies()
Modifier and TypeMethodDescriptionMockServerHttpRequest.BaseBuilder.cookie
(HttpCookie... cookie) Add one or more cookies.Modifier and TypeMethodDescriptionMockServerHttpRequest.BaseBuilder.cookies
(MultiValueMap<String, HttpCookie> cookies) Add the given cookies. -
Uses of HttpCookie in org.springframework.mock.web.reactive.function.server
Modifier and TypeMethodDescriptionMockServerRequest.Builder.cookies
(MultiValueMap<String, HttpCookie> cookies) -
Uses of HttpCookie in org.springframework.web.reactive.function.server
Modifier 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
-
Uses of HttpCookie in org.springframework.web.reactive.socket
Modifier and TypeMethodDescriptionHandshakeInfo.getCookies()
For a server session this returns the server request cookies from the handshake request.ModifierConstructorDescriptionHandshakeInfo
(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.