Interface IRoutingSlipCallback
- All Known Implementing Classes:
ExtendedAbstractRoutingSlipCallback
public interface IRoutingSlipCallback
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onStageComplete
(Task task, String completedStageName, String completedStageOutcome) void
onSubTaskUpdated
(Task task, String parentTaskId, String action, String updatedBy) Invoked when a sub task is updatedvoid
onTaskAssigned
(Task task, String action, String outcome, String outcomeUpdatedBy) Invoked when the task outcome is set and assigned to next participantvoid
onTaskCompleted
(Task task) Invoked when the task is completed, expired, withdrawn or erroredvoid
onTaskUpdated
(Task task, String action, String updatedBy) Invoked when the task is updated
-
Method Details
-
onTaskAssigned
Invoked when the task outcome is set and assigned to next participant- Parameters:
task
- The task objectaction
- The action that caused the assignmentoutcome
- The previous outcome if the assignment happened because a participant set the outcome and routed the taskoutcomeUpdatedBy
- The user id of the user who set the previous outcome, if any previous outcome
-
onTaskCompleted
Invoked when the task is completed, expired, withdrawn or errored- Parameters:
task
- The task object
-
onTaskUpdated
Invoked when the task is updated- Parameters:
task
- The task objectaction
- The action that caused the updateupdatedBy
- The id of the user who updated the task
-
onSubTaskUpdated
Invoked when a sub task is updated- Parameters:
task
- The task objectparentTaskId
- The task id of the root parent task. The root parent is not the necessarily the immediate parent, but the original task from which this sub task is derivedaction
- The action that caused the updateupdatedBy
- The id of the user who updated the task
-
onStageComplete
- Parameters:
task
- The task objectcompletedStageName
- The name of the completed stagecompletedStageOutcome
- The outcome of the completed stage
-