|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ServiceStatus>
com.ibm.itim.apps.provisioning.ServiceStatus
public enum ServiceStatus
An enumeration of values representing the status of the service. Instances of this enumeration summarize the server's ability to connect to and make request to the service. Note that some services, such as feeds and ITIM services are always considered to be ALIVE, since they do not follow the remote provisioning flows.
Enum Constant Summary | |
---|---|
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. |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
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
Method Detail |
---|
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 name
java.lang.NullPointerException
- if the argument is null
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |