Package com.flowable.workobject.api
Class WorkObjectSubState
java.lang.Object
com.flowable.workobject.api.WorkObjectSubState
public class WorkObjectSubState
extends java.lang.Object
Creates subState constants for
WorkObject
-
Field Summary
Fields Modifier and Type Field Description static java.util.Collection<java.lang.String>
ALL_SUB_STATES
Contains all possible sub-state values.static java.util.Collection<java.lang.String>
INACTIVE_SUB_STATES
Contains all sub-state values that correspond to an inactive work object.static java.lang.String
SUB_STATE_ACTIVE
The active state.static java.lang.String
SUB_STATE_ARCHIVED
The archived state.static java.lang.String
SUB_STATE_COMPLETED
The completed state.static java.lang.String
SUB_STATE_DISABLED
The disabled state.static java.lang.String
SUB_STATE_INACTIVE
The inactive state.static java.lang.String
SUB_STATE_INTERRUPTED
The interrupted state.static java.lang.String
SUB_STATE_PENDING
The pending state.static java.lang.String
SUB_STATE_PENDING_INACTIVE
The pending inactive state.static java.lang.String
SUB_STATE_TRANSFORMED
The transformed state. -
Method Summary
-
Field Details
-
SUB_STATE_ACTIVE
public static final java.lang.String SUB_STATE_ACTIVEThe active state. For a model work object, this state means that the model has no pending modifications and the current model is deployed.- See Also:
- Constant Field Values
-
SUB_STATE_INACTIVE
public static final java.lang.String SUB_STATE_INACTIVEThe inactive state. For a model work object, this state means that the model has no pending modifications and the current model is deployed in the inactive state (i.e. it is not selectable by users).- See Also:
- Constant Field Values
-
SUB_STATE_PENDING
public static final java.lang.String SUB_STATE_PENDINGThe pending state. For a model work object, this state means the the model has pending modifications that have not yet been deployed.- See Also:
- Constant Field Values
-
SUB_STATE_PENDING_INACTIVE
public static final java.lang.String SUB_STATE_PENDING_INACTIVEThe pending inactive state. For a model work object this state means that the model has been marked as inactive but has not yet been deployed. The model will still be selectable by users until the deployment takes place.- See Also:
- Constant Field Values
-
SUB_STATE_ARCHIVED
public static final java.lang.String SUB_STATE_ARCHIVEDThe archived state.- See Also:
- Constant Field Values
-
SUB_STATE_DISABLED
public static final java.lang.String SUB_STATE_DISABLEDThe disabled state.- See Also:
- Constant Field Values
-
SUB_STATE_COMPLETED
public static final java.lang.String SUB_STATE_COMPLETEDThe completed state.- See Also:
- Constant Field Values
-
SUB_STATE_INTERRUPTED
public static final java.lang.String SUB_STATE_INTERRUPTEDThe interrupted state.- See Also:
- Constant Field Values
-
SUB_STATE_TRANSFORMED
public static final java.lang.String SUB_STATE_TRANSFORMEDThe transformed state.- See Also:
- Constant Field Values
-
INACTIVE_SUB_STATES
public static final java.util.Collection<java.lang.String> INACTIVE_SUB_STATESContains all sub-state values that correspond to an inactive work object. -
ALL_SUB_STATES
public static final java.util.Collection<java.lang.String> ALL_SUB_STATESContains all possible sub-state values.
-