|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<NodeErrorStatus>
com.evolveum.midpoint.task.api.NodeErrorStatus
public enum NodeErrorStatus
Status of this node w.r.t. error conditions. Generally speaking, if NodeErrorStatus != OK, tasks cannot be scheduled on this node.
Enum Constant Summary | |
---|---|
DUPLICATE_NODE_ID_OR_NAME
More nodes with the same ID or name (currently ID == name). |
|
LOCAL_CONFIGURATION_ERROR
Local task manager is not configured properly, so it can be even started. |
|
LOCAL_INITIALIZATION_ERROR
Other kind of initialization error. |
|
NODE_REGISTRATION_FAILED
It was not possible to register node in repository due to a permanent error. |
|
NON_CLUSTERED_NODE_WITH_OTHERS
A non-clustered node runs along other (clustered or non-clustered) nodes. |
|
OK
Everything is OK. |
Method Summary | |
---|---|
static NodeErrorStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static NodeErrorStatus[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, 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 NodeErrorStatus OK
public static final NodeErrorStatus DUPLICATE_NODE_ID_OR_NAME
public static final NodeErrorStatus NON_CLUSTERED_NODE_WITH_OTHERS
public static final NodeErrorStatus LOCAL_CONFIGURATION_ERROR
public static final NodeErrorStatus LOCAL_INITIALIZATION_ERROR
public static final NodeErrorStatus NODE_REGISTRATION_FAILED
Method Detail |
---|
public static NodeErrorStatus[] values()
for (NodeErrorStatus c : NodeErrorStatus.values()) System.out.println(c);
public static NodeErrorStatus 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 |