Uses of Class
io.vertx.mutiny.core.http.Cookie
-
Packages that use Cookie Package Description io.vertx.mutiny.core.http io.vertx.mutiny.ext.web -
-
Uses of Cookie in io.vertx.mutiny.core.http
Fields in io.vertx.mutiny.core.http with type parameters of type Cookie Modifier and Type Field Description static TypeArg<Cookie>Cookie. __TYPE_ARGMethods in io.vertx.mutiny.core.http that return Cookie Modifier and Type Method Description static CookieCookie. cookie(String name, String value)CookieHttpServerRequest. getCookie(String name)CookieHttpServerRequest. getCookie(String name, String domain, String path)static CookieCookie. newInstance(io.vertx.core.http.Cookie arg)CookieHttpServerResponse. removeCookie(String name)CookieHttpServerResponse. removeCookie(String name, boolean invalidate)CookieHttpServerResponse. removeCookie(String name, String domain, String path)CookieHttpServerResponse. removeCookie(String name, String domain, String path, boolean invalidate)CookieCookie. setDomain(String domain)CookieCookie. setHttpOnly(boolean httpOnly)CookieCookie. setMaxAge(long maxAge)CookieCookie. setPath(String path)CookieCookie. setSameSite(io.vertx.core.http.CookieSameSite policy)CookieCookie. setSecure(boolean secure)CookieCookie. setValue(String value)Methods in io.vertx.mutiny.core.http that return types with arguments of type Cookie Modifier and Type Method Description Map<String,Cookie>HttpServerRequest. cookieMap()Deprecated.the implementation made a wrong assumption that cookies could be identified only by their name.Set<Cookie>HttpServerRequest. cookies()Set<Cookie>HttpServerRequest. cookies(String name)Set<Cookie>HttpServerResponse. removeCookies(String name)Set<Cookie>HttpServerResponse. removeCookies(String name, boolean invalidate)Methods in io.vertx.mutiny.core.http with parameters of type Cookie Modifier and Type Method Description HttpServerResponseHttpServerResponse. addCookie(Cookie cookie) -
Uses of Cookie in io.vertx.mutiny.ext.web
Methods in io.vertx.mutiny.ext.web that return Cookie Modifier and Type Method Description CookieRoutingContext. getCookie(String name)Deprecated.UseHttpServerRequest#getCookie(String)Get the cookie with the specified name.CookieRoutingContext. removeCookie(String name)Deprecated.UseHttpServerResponse#removeCookie(String)Expire a cookie, notifying a User Agent to remove it from its cookie jar.CookieRoutingContext. 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 Cookie Modifier and Type Method Description Map<String,Cookie>RoutingContext. cookieMap()Deprecated.UseHttpServerRequest#cookieMap()Methods in io.vertx.mutiny.ext.web with parameters of type Cookie Modifier and Type Method Description RoutingContextRoutingContext. addCookie(Cookie cookie)Deprecated.UseHttpServerResponse#addCookie(Cookie)Add a cookie.
-