Package org.apache.tomcat.util.http
Enum SameSiteCookies
- All Implemented Interfaces:
Serializable
,Comparable<SameSiteCookies>
,java.lang.constant.Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionCookie is only sent on same-site requests and cross-site top level navigation GET requestsCookie is always sent in cross-site requests.Prevents the cookie from being sent by the browser in all cross-site requestsDon't set the SameSite cookie attribute. -
Method Summary
Modifier and TypeMethodDescriptionstatic SameSiteCookies
fromString
(String value) getValue()
static SameSiteCookies
Returns the enum constant of this type with the specified name.static SameSiteCookies[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
UNSET
Don't set the SameSite cookie attribute. -
NONE
Cookie is always sent in cross-site requests. -
LAX
Cookie is only sent on same-site requests and cross-site top level navigation GET requests -
STRICT
Prevents the cookie from being sent by the browser in all cross-site requests
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getValue
-
fromString
-