public enum ServiceStatus extends java.lang.Enum<ServiceStatus>
| Enum Constant and Description |
|---|
ALIVE
The service is alive.
|
ATTEMPTING_RECOVERY
The system is attempting to recover the service and re-queue any
pending provisioning requests from the failure.
|
FAILED
The service has failed.
|
LOCKED_RECON_IN_PROGRESS
The service is executing a reconciliation which is configured to lock
the service during execution.
|
UNKNOWN
The service status is not known.
|
| Modifier and Type | Method and Description |
|---|---|
static ServiceStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ServiceStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceStatus UNKNOWN
public static final ServiceStatus ALIVE
public static final ServiceStatus FAILED
public static final ServiceStatus ATTEMPTING_RECOVERY
public static final ServiceStatus LOCKED_RECON_IN_PROGRESS
public static ServiceStatus[] values()
for (ServiceStatus c : ServiceStatus.values()) System.out.println(c);
public static ServiceStatus 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