Class NodeInstanceData
- java.lang.Object
-
- de.aristaflow.ilm.model.processmodel.NodeInstanceData
-
- All Implemented Interfaces:
Serializable
public class NodeInstanceData extends Object implements Serializable
- See Also:
Instance
, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description ProcessConstants.ExecutionMode
executionMode
@NotNull Integer
iteration
@Valid QualifiedAgent
performingAgent
@NotNull ProcessConstants.NodeState
state
List<@NotNull List<UUID>>
subInstIds
A list of the corresponding subprocess instance IDs, the index of the outer list is the iteration (starting with 0), the inner list is just a collection of subprocess instances without any specific order.
-
Constructor Summary
Constructors Constructor Description NodeInstanceData()
-
-
-
Field Detail
-
state
@NotNull public @NotNull ProcessConstants.NodeState state
-
iteration
@NotNull public @NotNull Integer iteration
-
executionMode
public ProcessConstants.ExecutionMode executionMode
-
performingAgent
@Valid public @Valid QualifiedAgent performingAgent
-
subInstIds
public List<@NotNull List<UUID>> subInstIds
A list of the corresponding subprocess instance IDs, the index of the outer list is the iteration (starting with 0), the inner list is just a collection of subprocess instances without any specific order.
The (outer) list will only be present if at least one subprocess instance exists.
-
-