Package com.comalatech.workflow.model
Interface State
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.util.List<? extends Task>
getAllTasks()
Returns the list of all tasks (completed or not) in the statejava.util.List<Approval>
getApprovals()
Deprecated.useStateApproval.getApprovals()
instead and checkApproval.isApproved()
is true.java.util.List<? extends Assignment>
getAssignments()
Returns a list of assignments on this state.java.util.List<? extends AttachmentVersion>
getAttachmentVersions()
Returns a list of the version of the content's attachments, at the time the content reached this statejava.lang.String
getColour()
Returns a string that represents the colour of the stateint
getContentVersion()
Returns the content's version at the time it reached this state.java.lang.String
getDescription()
Deprecated.from 1.4 useWorkflow.State.getDescription()
java.util.Date
getExpirationDate()
Returns the expiration date for this state.Assignment
getLastAssignment()
Deprecated.state assignment is no longer supported.java.lang.String
getName()
Returns the state namejava.util.List<Rejection>
getRejections()
Deprecated.useStateApproval.getApprovals()
instead and checkApproval.isApproved()
is false.java.util.List<? extends Task>
getTasks()
Returns the list of active tasks in the stateboolean
isAssignable()
Deprecated.State assignment is no longer supported.boolean
isPublished()
Returns true if the current state activity represents the published version of a page.boolean
isTaskable()
Deprecated.This attribute is actually associated with the workflow, not a state activity.boolean
isVersionsCompleted()
-
Methods inherited from interface com.comalatech.workflow.model.Activity
getActivityId, getComment, getDate, getPerformer, getUserName
-
-
-
-
Method Detail
-
getName
java.lang.String getName()
Returns the state name- Returns:
- the state name
- Since:
- 1.0
-
getDescription
java.lang.String getDescription()
Deprecated.from 1.4 useWorkflow.State.getDescription()
Returns the state description defined in the workflow- Returns:
- description
- Since:
- 1.3
-
getContentVersion
int getContentVersion()
Returns the content's version at the time it reached this state.- Returns:
- the content version
- Since:
- 1.0
-
getAttachmentVersions
java.util.List<? extends AttachmentVersion> getAttachmentVersions()
Returns a list of the version of the content's attachments, at the time the content reached this state- Returns:
- a list of AttachmentVersion records
- Since:
- 1.0
-
getAssignments
java.util.List<? extends Assignment> getAssignments()
Returns a list of assignments on this state. The latest attachment (if any) is consider as the content's assignment- Returns:
- a list of assignment
- Since:
- 1.0
-
getLastAssignment
Assignment getLastAssignment()
Deprecated.state assignment is no longer supported.Returns the latest assignment in this state- Returns:
- the latest assignment, or null if the content has not been assigned
-
getTasks
java.util.List<? extends Task> getTasks()
Returns the list of active tasks in the state- Returns:
- a list of Tasks
- Since:
- 1.0
-
getAllTasks
java.util.List<? extends Task> getAllTasks()
Returns the list of all tasks (completed or not) in the state- Returns:
- a list of all tasks
- Since:
- 1.0
-
getApprovals
java.util.List<Approval> getApprovals()
Deprecated.useStateApproval.getApprovals()
instead and checkApproval.isApproved()
is true.Returns the list of approvals given in this state- Returns:
- a list of approvals
- Since:
- 1.0
-
getRejections
java.util.List<Rejection> getRejections()
Deprecated.useStateApproval.getApprovals()
instead and checkApproval.isApproved()
is false.Returns the list of rejections given in this state- Returns:
- a list of rejections
- Since:
- 1.0
-
getExpirationDate
java.util.Date getExpirationDate()
Returns the expiration date for this state. This date may be null if no state expiration date is set.- Returns:
- Date the expiration date for this state.
- Since:
- 1.2
-
isPublished
boolean isPublished()
Returns true if the current state activity represents the published version of a page.- Returns:
- true and this state activity represents the published version of a page
-
isVersionsCompleted
boolean isVersionsCompleted()
- Returns:
- versionscompleted parameter of the state
-
isTaskable
boolean isTaskable()
Deprecated.This attribute is actually associated with the workflow, not a state activity. This property was previously set correctly when retrieving the current state, but may not be accurate for historic states. From 1.4 to determine if a future state will be taskable useWorkflow.State.isTaskable()
.Returns true is the state is taskable
-
isAssignable
boolean isAssignable()
Deprecated.State assignment is no longer supported. This attribute will be removed in a future version.Returns true if the state allows the page assignment to be set.
-
getColour
java.lang.String getColour()
Returns a string that represents the colour of the state- Returns:
- the state colour
- Since:
- 1.18.0
-
-