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 CookieHttpServerExchange. getRequestCookie(String name)Methods in io.undertow.server that return types with arguments of type Cookie Modifier and Type Method Description Map<String,Cookie>HttpServerExchange. getRequestCookies()Deprecated, for removal: This API element is subject to removal in a future version.use eitherHttpServerExchange.requestCookies()orHttpServerExchange.getRequestCookie(String)orHttpServerExchange.setRequestCookie(Cookie)methods insteadMap<String,Cookie>HttpServerExchange. getResponseCookies()Deprecated, for removal: This API element is subject to removal in a future version.use eitherHttpServerExchange.responseCookies()orHttpServerExchange.setResponseCookie(Cookie)methods insteadIterable<Cookie>HttpServerExchange. requestCookies()Returns unmodifiable enumeration of request cookies.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 voidConnectors. addCookie(HttpServerExchange exchange, Cookie cookie)Adds the cookie into the response header map.HttpServerExchangeHttpServerExchange. setRequestCookie(Cookie cookie)Sets a request cookieHttpServerExchangeHttpServerExchange. 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 classCookieImplMethods in io.undertow.server.handlers that return Cookie Modifier and Type Method Description CookieCookie. setComment(String comment)CookieCookieImpl. setComment(String comment)CookieCookie. setDiscard(boolean discard)CookieCookie. setDomain(String domain)CookieCookie. setExpires(Date expires)CookieCookie. setHttpOnly(boolean httpOnly)CookieCookie. setMaxAge(Integer maxAge)CookieCookie. setPath(String path)default CookieCookie. setSameSite(boolean sameSite)CookieCookieImpl. setSameSite(boolean sameSite)default CookieCookie. setSameSiteMode(String mode)CookieCookieImpl. setSameSiteMode(String mode)CookieCookie. setSecure(boolean secure)CookieCookie. setValue(String value)CookieCookie. setVersion(int version) -
Uses of Cookie in io.undertow.util
Methods in io.undertow.util that return Cookie Modifier and Type Method Description static CookieCookies. 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 Cookie Modifier and Type Method Description static Map<String,Cookie>Cookies. parseRequestCookies(int maxCookies, boolean allowEqualInValue, List<String> cookies)Deprecated, for removal: This API element is subject to removal in a future version.Methods in io.undertow.util with parameters of type Cookie Modifier and Type Method Description static intLegacyCookieSupport. adjustedCookieVersion(Cookie cookie)Method parameters in io.undertow.util with type arguments of type Cookie Modifier and Type Method Description static voidCookies. parseRequestCookies(int maxCookies, boolean allowEqualInValue, List<String> cookies, Set<Cookie> parsedCookies)
-