public enum ServiceStatus extends java.lang.Enum<ServiceStatus>
Enumeration that defines the status of a Service.
The ServiceStatus
will be provided by calling getServiceStatus
on a ServiceStatusEvent
.
The three states that are possible for a Liberator data service are:
ServiceStatusEvent
Enum Constant and Description |
---|
DOWN
Indicates that a service is down, which means that at least one of the required sources
defined for the service are down.
|
LIMITED
Indicates that a service is limited, which means that at least one of the non required
sources defined for the service are down (but all of the required sources are up).
|
OK
Indicates that the service is OK, which means that all the required and non required
sources defined for the service are up.
|
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 DOWN
Indicates that a service is down, which means that at least one of the required sources defined for the service are down.
public static final ServiceStatus LIMITED
Indicates that a service is limited, which means that at least one of the non required sources defined for the service are down (but all of the required sources are up).
public static final ServiceStatus OK
Indicates that the service is OK, which means that all the required and non required sources defined for the service are up.
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 nullPlease send bug reports and comments to Caplin support