public enum CoreCustomizationKeys extends Enum<CoreCustomizationKeys>
| Enum Constant and Description |
|---|
EXCLUDE_AUTHORIZATION_HEADER |
EXCLUDE_JWT_ISSUER_VALIDATION |
| Modifier and Type | Method and Description |
|---|---|
static CoreCustomizationKeys |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CoreCustomizationKeys[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CoreCustomizationKeys EXCLUDE_AUTHORIZATION_HEADER
public static final CoreCustomizationKeys EXCLUDE_JWT_ISSUER_VALIDATION
public static CoreCustomizationKeys[] values()
for (CoreCustomizationKeys c : CoreCustomizationKeys.values()) System.out.println(c);
public static CoreCustomizationKeys valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null