public static enum EducationTokenValidationResult.Status extends java.lang.Enum<EducationTokenValidationResult.Status>
| Enum Constant and Description |
|---|
EXPIRED
Signature is valid but the expiry timestamp is in the past.
|
INVALID
Token is null, malformed, or the signature did not verify.
|
VALID
Signature is valid and the token has not expired.
|
| Modifier and Type | Method and Description |
|---|---|
static EducationTokenValidationResult.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EducationTokenValidationResult.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EducationTokenValidationResult.Status VALID
public static final EducationTokenValidationResult.Status EXPIRED
public static final EducationTokenValidationResult.Status INVALID
public static EducationTokenValidationResult.Status[] values()
for (EducationTokenValidationResult.Status c : EducationTokenValidationResult.Status.values()) System.out.println(c);
public static EducationTokenValidationResult.Status valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null