Interface TaskDoneEvent
-
- All Superinterfaces:
GenericEvent
- All Known Implementing Classes:
TaskDoneEventImpl
public interface TaskDoneEvent extends GenericEvent
A TaskDoneEvent object is the description of a done activity. Those descriptions are sent to the workflow engine by the workflow tools when the user has done a task in a process instance.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ProcessModel
getProcessModel()
Returns the process model (peas).boolean
isResumingAction()
Get the flag to indicate if action comes from a resumed action.void
setProcessInstance(ProcessInstance instance)
Set the process instance.void
setResumingAction(boolean isResumingInstance)
Set a flag to indicate if action comes from a resumed action.-
Methods inherited from interface org.silverpeas.core.workflow.api.event.GenericEvent
getActionDate, getActionName, getDataRecord, getProcessInstance, getResolvedState, getSubstitute, getUser, getUserOrSubstitute, getUserRoleName, setSubstitute
-
-
-
-
Method Detail
-
getProcessModel
ProcessModel getProcessModel()
Returns the process model (peas).
-
setProcessInstance
void setProcessInstance(ProcessInstance instance)
Set the process instance.
-
setResumingAction
void setResumingAction(boolean isResumingInstance)
Set a flag to indicate if action comes from a resumed action.
-
isResumingAction
boolean isResumingAction()
Get the flag to indicate if action comes from a resumed action.
-
-