- All Implemented Interfaces:
Serializable
,Comparable<SetCookie.SameSite>
,Constable
- Enclosing class:
SetCookie
The SameSite attribute of the Set-Cookie HTTP response header allows you to declare if your cookie should be restricted
to a first-party or same-site context.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionCookies are not sent on normal cross-site subrequests (for example to load images or frames into a third party site) , but are sent when a user is navigating to the origin site (i.e., when following a link).Cookies will be sent in all contexts, i.e.Cookies will only be sent in a first-party context and not be sent along with requests initiated by third party websites. -
Method Summary
Modifier and TypeMethodDescriptiontext()
Text to write to the same site cookie param.static SetCookie.SameSite
Returns the enum constant of this class with the specified name.static SetCookie.SameSite[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LAX
Cookies are not sent on normal cross-site subrequests (for example to load images or frames into a third party site) , but are sent when a user is navigating to the origin site (i.e., when following a link). This is the default cookie value if SameSite has not been explicitly specified in recent browser versions -
STRICT
Cookies will only be sent in a first-party context and not be sent along with requests initiated by third party websites. -
NONE
Cookies will be sent in all contexts, i.e. in responses to both first-party and cross-origin requests. If SameSite=None is set, the cookie Secure attribute must also be set (or the cookie will be blocked).
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
text
Text to write to the same site cookie param.- Returns:
- text to send in cookie
-