I'm using BPMN workflow to assign a task to an assignee. How do I release (backward) the process so it will be available for previous candidate before it was assigned?

http://www.activiti.org/userguide/index.html#bpmnFirstExampleCode

link|improve this question
feedback

1 Answer

Setting the task assignee to null will do the job:

taskService.setAssignee(task.getId(), null);

See also this forum post.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.