Uses of Class
io.netty.handler.codec.http.cookie.CookieHeaderNames.SameSite
-
Packages that use CookieHeaderNames.SameSite Package Description io.netty.handler.codec.http.cookie This package contains Cookie related classes. -
-
Uses of CookieHeaderNames.SameSite in io.netty.handler.codec.http.cookie
Fields in io.netty.handler.codec.http.cookie declared as CookieHeaderNames.SameSite Modifier and Type Field Description private CookieHeaderNames.SameSite
ClientCookieDecoder.CookieBuilder. sameSite
private CookieHeaderNames.SameSite
DefaultCookie. sameSite
Methods in io.netty.handler.codec.http.cookie that return CookieHeaderNames.SameSite Modifier and Type Method Description (package private) static CookieHeaderNames.SameSite
CookieHeaderNames.SameSite. of(java.lang.String name)
Return the enum value corresponding to the passed in same-site-flag, using a case insensitive comparison.CookieHeaderNames.SameSite
DefaultCookie. sameSite()
Checks to see if thisCookie
can be sent along cross-site requests.static CookieHeaderNames.SameSite
CookieHeaderNames.SameSite. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CookieHeaderNames.SameSite[]
CookieHeaderNames.SameSite. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.netty.handler.codec.http.cookie with parameters of type CookieHeaderNames.SameSite Modifier and Type Method Description void
DefaultCookie. setSameSite(CookieHeaderNames.SameSite sameSite)
Determines if this thisCookie
can be sent along cross-site requests.
-