Package com.comalatech.workflow.model
Interface Workflow.State
-
- Enclosing interface:
- Workflow
public static interface Workflow.State
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description StringgetDescription()Returns the state description defined in the workflowStringgetName()Returns the state namebooleanisAssignable()Deprecated.page assignment is no longer supported in the user interface from Workflows 4.0booleanisFinalState()Returns true if the state is marked as the final (published) state.booleanisTaskable()Returns true is the state is taskablebooleanisVersionsCompleted()Returns true if this state was marked as the versionscompleted state.
-
-
-
Method Detail
-
getName
String getName()
Returns the state name- Returns:
- the state name
-
getDescription
String getDescription()
Returns the state description defined in the workflow- Returns:
- description
-
isTaskable
boolean isTaskable()
Returns true is the state is taskable
-
isFinalState
boolean isFinalState()
Returns true if the state is marked as the final (published) state.- Returns:
- true and this state is the final state
-
isVersionsCompleted
boolean isVersionsCompleted()
Returns true if this state was marked as the versionscompleted state.- Returns:
- true if this state is the versionscompleted state
-
isAssignable
boolean isAssignable()
Deprecated.page assignment is no longer supported in the user interface from Workflows 4.0Returns true if the state allows the page assignment to be set.
-
-