Package com.appiancorp.suiteapi.process
Class NodeActionResult
java.lang.Object
com.appiancorp.suiteapi.process.NodeActionResult
NodeActionResult contains all the results of NodeActions, e.g.,
starting a node as a task, grouped initially by process model.
It also contains all the node UUIDs that were invalid, not found on
any process execution engine.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionThe list of actions taken per process model.String[]
The list of nodeUuids that were requested, but that were invalid.getNodeActionProcessModelResult
(Long processModelId) getNodeActionProcessResult
(Long processId) Search through this object's NodeActionProcessModelResults to find the one with the given process id.void
setActionsPerProcessModel
(NodeActionProcessModelResult[] actionsPerProcessModel) The list of actions taken per process model.void
setInvalidNodeUuids
(String[] invalidNodeUuids) The list of nodeUuids that were requested, but that were invalid.toString()
Convert this object to String for debugging purposes.
-
Constructor Details
-
NodeActionResult
public NodeActionResult()
-
-
Method Details
-
getInvalidNodeUuids
The list of nodeUuids that were requested, but that were invalid. -
setInvalidNodeUuids
The list of nodeUuids that were requested, but that were invalid. -
getActionsPerProcessModel
The list of actions taken per process model. -
setActionsPerProcessModel
The list of actions taken per process model. -
getNodeActionProcessModelResult
- Parameters:
processModelId
-- Returns:
- the NodeActionProcessModelResult of the given processModelId, or null if not found
-
getNodeActionProcessResult
Search through this object's NodeActionProcessModelResults to find the one with the given process id.- Parameters:
processId
-- Returns:
- the NodeActionProcessResult of the given processId, or null if not found
-
toString
Convert this object to String for debugging purposes.
-