03-22-2011 11:19 PM
03-23-2011 03:35 AM
03-23-2011 10:13 AM
03-23-2011 10:16 AM
Task task = taskService.createTaskQuery().processInstanceId(procDefId).singleResult();
taskService.completeTask(task.getId());
03-23-2011 10:24 AM
You should complete the task in order to have the flow continue to the next task, in our API this is something like this:
Task task = taskService.createTaskQuery().processInstanceId(procDefId).singleResult();
taskService.completeTask(task.getId());
03-23-2011 10:58 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.