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 java.lang.String
getDescription()
Returns the state description defined in the workflowjava.lang.String
getName()
Returns the state nameboolean
isAssignable()
Deprecated.page assignment is no longer supported in the user interface from Workflows 4.0boolean
isFinalState()
Returns true if the state is marked as the final (published) state.boolean
isTaskable()
Returns true is the state is taskableboolean
isVersionsCompleted()
Returns true if this state was marked as the versionscompleted state.
-
-
-
Method Detail
-
getName
java.lang.String getName()
Returns the state name- Returns:
- the state name
-
getDescription
java.lang.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.
-
-