public static enum Credentials.Status extends Enum<Credentials.Status>
Enum Constant and Description |
---|
ACCOUNT_DISABLED
Indicates that the
Agent which credentials were validated is disabled. |
EXPIRED
Indicates that the credential has expired.
|
IN_PROGRESS
Indicates that the credential is being validated.
|
INVALID
Indicates that the credential is not valid after a validation attempt.
|
UNVALIDATED
Indicates that the credential was not validated yet.
|
VALID
Indicates that the credential is valid after a validation attempt.
|
Modifier and Type | Method and Description |
---|---|
static Credentials.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Credentials.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Credentials.Status UNVALIDATED
Indicates that the credential was not validated yet.
public static final Credentials.Status IN_PROGRESS
Indicates that the credential is being validated.
public static final Credentials.Status INVALID
Indicates that the credential is not valid after a validation attempt.
public static final Credentials.Status VALID
Indicates that the credential is valid after a validation attempt.
public static final Credentials.Status EXPIRED
Indicates that the credential has expired.
public static final Credentials.Status ACCOUNT_DISABLED
Indicates that the Agent
which credentials were validated is disabled.
public static Credentials.Status[] values()
for (Credentials.Status c : Credentials.Status.values()) System.out.println(c);
public static Credentials.Status 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 © 2018 JBoss by Red Hat. All rights reserved.