public enum CertCaptureProvisionStatus extends java.lang.Enum<CertCaptureProvisionStatus>
Enum Constant and Description |
---|
Finished
Account and company are provisioned
|
InProgress
Provision job is being queued
This could also be an indication that some companies under an account has been provisioned, while others
under the same account has not.
|
NotStarted
Account are not provisioned
|
Queued
The account is put into provisioned queue.
|
Modifier and Type | Method and Description |
---|---|
static CertCaptureProvisionStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CertCaptureProvisionStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CertCaptureProvisionStatus Finished
public static final CertCaptureProvisionStatus NotStarted
public static final CertCaptureProvisionStatus InProgress
public static final CertCaptureProvisionStatus Queued
public static CertCaptureProvisionStatus[] values()
for (CertCaptureProvisionStatus c : CertCaptureProvisionStatus.values()) System.out.println(c);
public static CertCaptureProvisionStatus 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