Uses of Interface
io.undertow.server.handlers.Cookie
Packages that use Cookie
-
Uses of Cookie in io.undertow.server
Methods in io.undertow.server that return CookieMethods in io.undertow.server that return types with arguments of type CookieModifier and TypeMethodDescriptionHttpServerExchange.getRequestCookies()
Deprecated.HttpServerExchange.getResponseCookies()
Deprecated.use eitherHttpServerExchange.responseCookies()
orHttpServerExchange.setResponseCookie(Cookie)
methods insteadHttpServerExchange.requestCookies()
Returns unmodifiable enumeration of request cookies.HttpServerExchange.responseCookies()
Returns unmodifiable enumeration of response cookies.Methods in io.undertow.server with parameters of type CookieModifier and TypeMethodDescriptionstatic void
Connectors.addCookie
(HttpServerExchange exchange, Cookie cookie) Adds the cookie into the response header map.HttpServerExchange.setRequestCookie
(Cookie cookie) Sets a request cookieHttpServerExchange.setResponseCookie
(Cookie cookie) Sets a response cookie -
Uses of Cookie in io.undertow.server.handlers
Classes in io.undertow.server.handlers that implement CookieMethods in io.undertow.server.handlers that return CookieModifier and TypeMethodDescriptionCookie.setComment
(String comment) CookieImpl.setComment
(String comment) Cookie.setDiscard
(boolean discard) Cookie.setExpires
(Date expires) Cookie.setHttpOnly
(boolean httpOnly) default Cookie
Cookie.setSameSite
(boolean sameSite) CookieImpl.setSameSite
(boolean sameSite) default Cookie
Cookie.setSameSiteMode
(String mode) CookieImpl.setSameSiteMode
(String mode) Cookie.setSecure
(boolean secure) Cookie.setVersion
(int version) -
Uses of Cookie in io.undertow.util
Methods in io.undertow.util that return CookieModifier and TypeMethodDescriptionstatic Cookie
Cookies.parseSetCookieHeader
(String headerValue) Parses a "Set-Cookie:" response header value into its cookie representation.Methods in io.undertow.util that return types with arguments of type CookieModifier and TypeMethodDescriptionCookies.parseRequestCookies
(int maxCookies, boolean allowEqualInValue, List<String> cookies) Deprecated.Methods in io.undertow.util with parameters of type CookieModifier and TypeMethodDescriptionstatic int
LegacyCookieSupport.adjustedCookieVersion
(Cookie cookie) Method parameters in io.undertow.util with type arguments of type CookieModifier and TypeMethodDescriptionstatic void
Cookies.parseRequestCookies
(int maxCookies, boolean allowEqualInValue, List<String> cookies, Set<Cookie> parsedCookies)
HttpServerExchange.requestCookies()
orHttpServerExchange.getRequestCookie(String)
orHttpServerExchange.setRequestCookie(Cookie)
methods instead