public enum ExecutionStatus extends java.lang.Enum<ExecutionStatus>
Enum Constant and Description |
---|
ABORT
Exception during plug-in will result in Abort status.
|
FAILURE
Plug-in failure status.
|
PAUSE
Plug-in execution is not complete and needs input to continue execution
|
SUCCESS
Plug-in success status.
|
Modifier and Type | Method and Description |
---|---|
ExecutionAction |
getAction()
Deprecated.
|
int |
getErrorCode()
Deprecated.
|
java.lang.String |
getErrorMsg()
Deprecated.
|
int |
getStatus()
Gets the status.
|
void |
setAction(ExecutionAction action)
Deprecated.
|
void |
setErrorCode(int errorCode)
Deprecated.
|
void |
setErrorMsg(java.lang.String errorMsg)
Deprecated.
|
static ExecutionStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExecutionStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutionStatus SUCCESS
PluginExecutionStrategy
will decide the next plug-in to be
executedpublic static final ExecutionStatus FAILURE
public static final ExecutionStatus ABORT
public static final ExecutionStatus PAUSE
public static ExecutionStatus[] values()
for (ExecutionStatus c : ExecutionStatus.values()) System.out.println(c);
public static ExecutionStatus 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 int getStatus()
@Deprecated public void setErrorMsg(java.lang.String errorMsg)
@Deprecated public java.lang.String getErrorMsg()
@Deprecated public void setErrorCode(int errorCode)
@Deprecated public int getErrorCode()
@Deprecated public ExecutionAction getAction()
@Deprecated public void setAction(ExecutionAction action)