Uses of Class
io.vertx.mutiny.core.http.Cookie
Packages that use Cookie
-
Uses of Cookie in io.vertx.mutiny.core.http
Fields in io.vertx.mutiny.core.http with type parameters of type CookieMethods in io.vertx.mutiny.core.http that return CookieModifier and TypeMethodDescriptionstatic Cookie
static Cookie
Cookie.newInstance
(io.vertx.core.http.Cookie arg) HttpServerResponse.removeCookie
(String name) HttpServerResponse.removeCookie
(String name, boolean invalidate) HttpServerResponse.removeCookie
(String name, String domain, String path) HttpServerResponse.removeCookie
(String name, String domain, String path, boolean invalidate) Cookie.setHttpOnly
(boolean httpOnly) Cookie.setMaxAge
(long maxAge) Cookie.setSameSite
(io.vertx.core.http.CookieSameSite policy) Cookie.setSecure
(boolean secure) Methods in io.vertx.mutiny.core.http that return types with arguments of type CookieModifier and TypeMethodDescriptionHttpServerRequest.cookieMap()
Deprecated.the implementation made a wrong assumption that cookies could be identified only by their name.HttpServerRequest.cookies()
HttpServerResponse.removeCookies
(String name) HttpServerResponse.removeCookies
(String name, boolean invalidate) Methods in io.vertx.mutiny.core.http with parameters of type Cookie -
Uses of Cookie in io.vertx.mutiny.ext.web
Methods in io.vertx.mutiny.ext.web that return CookieModifier and TypeMethodDescriptionDeprecated.UseHttpServerRequest#getCookie(String)
Get the cookie with the specified name.RoutingContext.removeCookie
(String name) Deprecated.UseHttpServerResponse#removeCookie(String)
Expire a cookie, notifying a User Agent to remove it from its cookie jar.RoutingContext.removeCookie
(String name, boolean invalidate) Deprecated.UseHttpServerResponse#removeCookie(String, boolean)
Remove a cookie from the cookie set.Methods in io.vertx.mutiny.ext.web that return types with arguments of type CookieModifier and TypeMethodDescriptionRoutingContext.cookieMap()
Deprecated.UseHttpServerRequest#cookieMap()
Methods in io.vertx.mutiny.ext.web with parameters of type CookieModifier and TypeMethodDescriptionDeprecated.UseHttpServerResponse#addCookie(Cookie)
Add a cookie.