Package io.quarkus.vertx.http.runtime
Enum FormAuthRuntimeConfig.CookieSameSite
- java.lang.Object
-
- java.lang.Enum<FormAuthRuntimeConfig.CookieSameSite>
-
- io.quarkus.vertx.http.runtime.FormAuthRuntimeConfig.CookieSameSite
-
- All Implemented Interfaces:
Serializable,Comparable<FormAuthRuntimeConfig.CookieSameSite>
- Enclosing class:
- FormAuthRuntimeConfig
public static enum FormAuthRuntimeConfig.CookieSameSite extends Enum<FormAuthRuntimeConfig.CookieSameSite>
SameSite attribute values for the session and location cookies.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FormAuthRuntimeConfig.CookieSameSitevalueOf(String name)Returns the enum constant of this type with the specified name.static FormAuthRuntimeConfig.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 FormAuthRuntimeConfig.CookieSameSite STRICT
-
LAX
public static final FormAuthRuntimeConfig.CookieSameSite LAX
-
NONE
public static final FormAuthRuntimeConfig.CookieSameSite NONE
-
-
Method Detail
-
values
public static FormAuthRuntimeConfig.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 (FormAuthRuntimeConfig.CookieSameSite c : FormAuthRuntimeConfig.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 FormAuthRuntimeConfig.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
-
-