java.lang.Object | ||
↳ | java.lang.Enum<E extends java.lang.Enum<E>> | |
↳ | com.urbanairship.actions.ActionResult.Status |
The run status of the action.
Enum Values | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
ActionResult.Status | ACTION_NOT_FOUND | The action was not performed because the action was not found
in the ActionRegistry . |
|||||||||
ActionResult.Status | COMPLETED | The action accepted the arguments and executed without an exception. | |||||||||
ActionResult.Status | EXECUTION_ERROR | The action encountered a runtime exception during execution. | |||||||||
ActionResult.Status | REJECTED_ARGUMENTS | The action was not performed because the arguments were rejected by either the predicate in the registry or the action. |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
static ActionResult.Status | valueOf(String name) | ||||||||||
final static Status[] | values() |
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() | |||||||||||
![]() |
The action was not performed because the action was not found
in the ActionRegistry
. This value is
only possible if trying to run an action by name through the
ActionRunRequestFactory
.
The action accepted the arguments and executed without an exception.
The action encountered a runtime exception during execution. The exception field will contain the caught exception.
The action was not performed because the arguments were rejected by either the predicate in the registry or the action.