public enum ValidationContext extends Enum<ValidationContext>
| Enum Constant and Description |
|---|
FULL_VALIDATION
Perform full validation of the IdP configuration.
|
OIDC_DISCOVERY
Only perform validation of fields necessary to perform OpenID Connect Discovery.
|
| Modifier and Type | Method and Description |
|---|---|
static ValidationContext |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValidationContext[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValidationContext FULL_VALIDATION
public static final ValidationContext OIDC_DISCOVERY
public static ValidationContext[] values()
for (ValidationContext c : ValidationContext.values()) System.out.println(c);
public static ValidationContext 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 nullCopyright © 2023 Atlassian. All rights reserved.