is one task instance that can be assigned to an actor (read: put in
someones task list) and that can trigger the coninuation of execution
of the token upon completion.
cancel() cancels this task.
This task intance will be marked as cancelled and as ended.
public void
cancel(Transition transition) cancels this task, takes the specified transition.
This task intance will be marked as cancelled and as ended.
public void
cancel(String transitionName) cancels this task, takes the specified transition.
This task intance will be marked as cancelled and as ended.
public void
copySwimlaneInstanceAssignment(SwimlaneInstance swimlaneInstance) copies the assignment (that includes both the swimlaneActorId and the set of pooledActors) of
the given swimlane into this taskInstance.
end(String transitionName) marks this task as done and specifies the name of a transition
leaving the task-node for the case that the completion of this
task instances triggers a signal on the token.
public void
end(Transition transition) marks this task as done and specifies a transition
leaving the task-node for the case that the completion of this
task instances triggers a signal on the token.
cancels this task.
This task intance will be marked as cancelled and as ended. But cancellation
doesn't influence singalling and continuation of process execution.
cancels this task, takes the specified transition.
This task intance will be marked as cancelled and as ended. But cancellation
doesn't influence singalling and continuation of process execution.
cancels this task, takes the specified transition.
This task intance will be marked as cancelled and as ended. But cancellation
doesn't influence singalling and continuation of process execution.
marks this task as done and specifies the name of a transition
leaving the task-node for the case that the completion of this
task instances triggers a signal on the token.
If this task leads to a signal on the token, the given transition
name will be used in the signal.
If this task completion does not trigger execution to move on,
the transitionName is ignored.
marks this task as done and specifies a transition
leaving the task-node for the case that the completion of this
task instances triggers a signal on the token.
If this task leads to a signal on the token, the given transition
name will be used in the signal.
If this task completion does not trigger execution to move on,
the transition is ignored.
gets the pool of actors for this task instance. If this task has a simlaneInstance
and no pooled actors, the pooled actors of the swimlane instance are returned.
(re)assign this task to the given actor. If this task is related
to a swimlane instance, that swimlane instance will be updated as well.
setActorId
public void setActorId(String actorId, boolean overwriteSwimlane)(Code)
(re)assign this task to the given actor.
Parameters: actorId - is reference to the person that is assigned to this task. Parameters: overwriteSwimlane - specifies if the related swimlane should be overwritten with the given swimlaneActorId.