Package io.quarkus.security.webauthn
Enum WebAuthnRunTimeConfig.CookieSameSite
- java.lang.Object
-
- java.lang.Enum<WebAuthnRunTimeConfig.CookieSameSite>
-
- io.quarkus.security.webauthn.WebAuthnRunTimeConfig.CookieSameSite
-
- All Implemented Interfaces:
Serializable,Comparable<WebAuthnRunTimeConfig.CookieSameSite>
- Enclosing class:
- WebAuthnRunTimeConfig
public static enum WebAuthnRunTimeConfig.CookieSameSite extends Enum<WebAuthnRunTimeConfig.CookieSameSite>
SameSite attribute values for the session cookie.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WebAuthnRunTimeConfig.CookieSameSitevalueOf(String name)Returns the enum constant of this type with the specified name.static WebAuthnRunTimeConfig.CookieSameSite[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STRICT
public static final WebAuthnRunTimeConfig.CookieSameSite STRICT
-
LAX
public static final WebAuthnRunTimeConfig.CookieSameSite LAX
-
NONE
public static final WebAuthnRunTimeConfig.CookieSameSite NONE
-
-
Method Detail
-
values
public static WebAuthnRunTimeConfig.CookieSameSite[] 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 (WebAuthnRunTimeConfig.CookieSameSite c : WebAuthnRunTimeConfig.CookieSameSite.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WebAuthnRunTimeConfig.CookieSameSite valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-