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 TypeMethodDescriptionCookieStore.asLegacyMap()Deprecated, for removal: This API element is subject to removal in a future version.Returns an immutable list of all the cookies in this store with the given name.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 insteadHttpServerExchange.getResponseCookies()Deprecated, for removal: This API element is subject to removal in a future version.use eitherHttpServerExchange.responseCookies()orHttpServerExchange.setResponseCookie(Cookie)methods insteadCookieStore.iterator()The iterator returned is immutable.HttpServerExchange.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 TypeMethodDescriptionAdds a cookie to the store.static voidConnectors.addCookie(HttpServerExchange exchange, Cookie cookie) Adds the cookie into the response header map.booleanRemoves the cookie from the store if it exists.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 TypeMethodDescriptiondefault CookieCookie.setAttribute(String name, String value) Sets an attribute for the cookie.CookieImpl.setAttribute(String name, String value) protected CookieCookieImpl.setAttribute(String name, String value, boolean performSync) Cookie.setComment(String comment) CookieImpl.setComment(String comment) Cookie.setDiscard(boolean discard) Cookie.setExpires(Date expires) Cookie.setHttpOnly(boolean httpOnly) default CookieCookie.setSameSite(boolean sameSite) Deprecated, for removal: This API element is subject to removal in a future version.CookieImpl.setSameSite(boolean sameSite) default CookieCookie.setSameSiteMode(String mode) CookieImpl.setSameSiteMode(String mode) Cookie.setSecure(boolean secure) Cookie.setVersion(int version) Constructors in io.undertow.server.handlers with parameters of type Cookie -
Uses of Cookie in io.undertow.util
Methods in io.undertow.util that return CookieModifier and TypeMethodDescriptionstatic 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 CookieModifier and TypeMethodDescriptionCookies.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 CookieModifier and TypeMethodDescriptionstatic intLegacyCookieSupport.adjustedCookieVersion(Cookie cookie) Method parameters in io.undertow.util with type arguments of type CookieModifier and TypeMethodDescriptionstatic voidCookies.parseRequestCookies(int maxCookies, boolean allowEqualInValue, List<String> cookies, Set<Cookie> parsedCookies) Deprecated, for removal: This API element is subject to removal in a future version.
HttpServerExchange.getRequestCookies()andHttpServerExchange.getResponseCookies()methods.