Uses of Interface
io.undertow.server.handlers.Cookie
-
Packages that use Cookie Package Description io.undertow.server io.undertow.server.handlers io.undertow.util -
-
Uses of Cookie in io.undertow.server
Methods in io.undertow.server that return Cookie Modifier and Type Method Description Cookie
HttpServerExchange. getRequestCookie(java.lang.String name)
Methods in io.undertow.server that return types with arguments of type Cookie Modifier and Type Method Description java.util.Map<java.lang.String,Cookie>
HttpServerExchange. getRequestCookies()
Deprecated.use eitherHttpServerExchange.requestCookies()
orHttpServerExchange.getRequestCookie(String)
orHttpServerExchange.setRequestCookie(Cookie)
methods insteadjava.util.Map<java.lang.String,Cookie>
HttpServerExchange. getResponseCookies()
Deprecated.use eitherHttpServerExchange.responseCookies()
orHttpServerExchange.setResponseCookie(Cookie)
methods insteadjava.lang.Iterable<Cookie>
HttpServerExchange. requestCookies()
Returns unmodifiable enumeration of request cookies.java.lang.Iterable<Cookie>
HttpServerExchange. responseCookies()
Returns unmodifiable enumeration of response cookies.Methods in io.undertow.server with parameters of type Cookie Modifier and Type Method Description static void
Connectors. addCookie(HttpServerExchange exchange, Cookie cookie)
Adds the cookie into the response header map.HttpServerExchange
HttpServerExchange. setRequestCookie(Cookie cookie)
Sets a request cookieHttpServerExchange
HttpServerExchange. setResponseCookie(Cookie cookie)
Sets a response cookie -
Uses of Cookie in io.undertow.server.handlers
Classes in io.undertow.server.handlers that implement Cookie Modifier and Type Class Description class
CookieImpl
Methods in io.undertow.server.handlers that return Cookie Modifier and Type Method Description Cookie
Cookie. setComment(java.lang.String comment)
Cookie
CookieImpl. setComment(java.lang.String comment)
Cookie
Cookie. setDiscard(boolean discard)
Cookie
Cookie. setDomain(java.lang.String domain)
Cookie
Cookie. setExpires(java.util.Date expires)
Cookie
Cookie. setHttpOnly(boolean httpOnly)
Cookie
Cookie. setMaxAge(java.lang.Integer maxAge)
Cookie
Cookie. setPath(java.lang.String path)
default Cookie
Cookie. setSameSite(boolean sameSite)
Cookie
CookieImpl. setSameSite(boolean sameSite)
default Cookie
Cookie. setSameSiteMode(java.lang.String mode)
Cookie
CookieImpl. setSameSiteMode(java.lang.String mode)
Cookie
Cookie. setSecure(boolean secure)
Cookie
Cookie. setValue(java.lang.String value)
Cookie
Cookie. setVersion(int version)
-
Uses of Cookie in io.undertow.util
Methods in io.undertow.util that return Cookie Modifier and Type Method Description static Cookie
Cookies. parseSetCookieHeader(java.lang.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 Cookie Modifier and Type Method Description static java.util.Map<java.lang.String,Cookie>
Cookies. parseRequestCookies(int maxCookies, boolean allowEqualInValue, java.util.List<java.lang.String> cookies)
Deprecated.Methods in io.undertow.util with parameters of type Cookie Modifier and Type Method Description static int
LegacyCookieSupport. adjustedCookieVersion(Cookie cookie)
Method parameters in io.undertow.util with type arguments of type Cookie Modifier and Type Method Description static void
Cookies. parseRequestCookies(int maxCookies, boolean allowEqualInValue, java.util.List<java.lang.String> cookies, java.util.Set<Cookie> parsedCookies)
-