Package org.apache.tomcat.util.http
Enum SameSiteCookies
- All Implemented Interfaces:
- Serializable,- Comparable<SameSiteCookies>,- java.lang.constant.Constable
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum 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 SummaryModifier and TypeMethodDescriptionstatic SameSiteCookiesfromString(String value) getValue()static SameSiteCookiesReturns 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- 
UNSETDon't set the SameSite cookie attribute.
- 
NONECookie is always sent in cross-site requests.
- 
LAXCookie is only sent on same-site requests and cross-site top level navigation GET requests
- 
STRICTPrevents the cookie from being sent by the browser in all cross-site requests
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
- 
getValue
- 
fromString
 
-