public static enum Token.ValidationStatus extends Enum<Token.ValidationStatus>
Enum Constant and Description |
---|
INDETERMINATE
Indicates that some attempt has been made to validate the token
but that its validation status could not be determined.
|
INVALID
Indicates the token has been unsuccessfully validated.
|
VALID
Indicates the token has been successfully validated.
|
VALIDATION_NOT_ATTEMPTED
Indicates that token validation has not yet been attempted.
|
Modifier and Type | Method and Description |
---|---|
static Token.ValidationStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Token.ValidationStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Token.ValidationStatus VALID
public static final Token.ValidationStatus INVALID
public static final Token.ValidationStatus INDETERMINATE
public static final Token.ValidationStatus VALIDATION_NOT_ATTEMPTED
public static Token.ValidationStatus[] values()
for (Token.ValidationStatus c : Token.ValidationStatus.values()) System.out.println(c);
public static Token.ValidationStatus 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 © 1999–2020 Shibboleth Consortium. All rights reserved.