public enum ActionConstants extends java.lang.Enum<ActionConstants>
| Enum Constant and Description |
|---|
FAILOVER_CONTINUE
Action to be taken after an end-point responds: If the error controller returns this the fail-over mechanism must try the next end-point
|
FAILOVER_NOT_REQUIRED
Action to be taken after an end-point responds: If an-endpoint response was fine
|
FAILOVER_STOP
Action to be taken after an end-point responds: If the error controller returns this the fail-over mechanism must stop trying the next end-point
|
| Modifier and Type | Method and Description |
|---|---|
byte |
getAction() |
static ActionConstants |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ActionConstants[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActionConstants FAILOVER_NOT_REQUIRED
public static final ActionConstants FAILOVER_STOP
public static final ActionConstants FAILOVER_CONTINUE
public static ActionConstants[] values()
for (ActionConstants c : ActionConstants.values()) System.out.println(c);
public static ActionConstants 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 nullpublic byte getAction()