Uses of Class
org.eclipse.jetty.http.HttpCookie.SameSite
-
Packages that use HttpCookie.SameSite Package Description org.eclipse.jetty.http Jetty Http : Tools for Http processingorg.eclipse.jetty.server.session Jetty Server : Session Management Implementations -
-
Uses of HttpCookie.SameSite in org.eclipse.jetty.http
Methods in org.eclipse.jetty.http that return HttpCookie.SameSite Modifier and Type Method Description HttpCookie.SameSite
HttpCookie. getSameSite()
static HttpCookie.SameSite
HttpCookie. getSameSiteDefault(javax.servlet.ServletContext context)
Get the default value for SameSite cookie attribute, if one has been set for the given context.static HttpCookie.SameSite
HttpCookie. getSameSiteFromComment(java.lang.String comment)
static HttpCookie.SameSite
HttpCookie.SameSite. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static HttpCookie.SameSite[]
HttpCookie.SameSite. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.eclipse.jetty.http with parameters of type HttpCookie.SameSite Modifier and Type Method Description static java.lang.String
HttpCookie. getCommentWithAttributes(java.lang.String comment, boolean httpOnly, HttpCookie.SameSite sameSite)
Constructors in org.eclipse.jetty.http with parameters of type HttpCookie.SameSite Constructor Description HttpCookie(java.lang.String name, java.lang.String value, java.lang.String domain, java.lang.String path, long maxAge, boolean httpOnly, boolean secure, java.lang.String comment, int version, HttpCookie.SameSite sameSite)
-
Uses of HttpCookie.SameSite in org.eclipse.jetty.server.session
Methods in org.eclipse.jetty.server.session that return HttpCookie.SameSite Modifier and Type Method Description HttpCookie.SameSite
SessionHandler. getSameSite()
Methods in org.eclipse.jetty.server.session with parameters of type HttpCookie.SameSite Modifier and Type Method Description void
SessionHandler. setSameSite(HttpCookie.SameSite sameSite)
Set Session cookie sameSite mode.
-