Package org.apache.tomcat.util.http
Enum SameSiteCookies
- java.lang.Object
-
- java.lang.Enum<SameSiteCookies>
-
- org.apache.tomcat.util.http.SameSiteCookies
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<SameSiteCookies>
public enum SameSiteCookies extends java.lang.Enum<SameSiteCookies>
Defines the possible values for the SameSite cookie attribute.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LAXCookie is only sent on same-site requests and cross-site top level navigation GET requestsNONECookie is always sent in cross-site requests.STRICTPrevents the cookie from being sent by the browser in all cross-site requestsUNSETDon't set the SameSite cookie attribute.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SameSiteCookiesfromString(java.lang.String value)Converts a string value to the corresponding SameSiteCookies enum constant.java.lang.StringgetValue()Returns the string value of this SameSite setting.static SameSiteCookiesvalueOf(java.lang.String name)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 Detail
-
UNSET
public static final SameSiteCookies UNSET
Don't set the SameSite cookie attribute.
-
NONE
public static final SameSiteCookies NONE
Cookie is always sent in cross-site requests.
-
LAX
public static final SameSiteCookies LAX
Cookie is only sent on same-site requests and cross-site top level navigation GET requests
-
STRICT
public static final SameSiteCookies STRICT
Prevents the cookie from being sent by the browser in all cross-site requests
-
-
Method Detail
-
values
public static SameSiteCookies[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SameSiteCookies c : SameSiteCookies.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SameSiteCookies valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getValue
public java.lang.String getValue()
Returns the string value of this SameSite setting.- Returns:
- the SameSite value string
-
fromString
public static SameSiteCookies fromString(java.lang.String value)
Converts a string value to the corresponding SameSiteCookies enum constant.- Parameters:
value- the string representation of the SameSite value- Returns:
- the matching SameSiteCookies enum constant
- Throws:
java.lang.IllegalStateException- if the value does not match any known SameSite value
-
-