I'm trying to fetch the list of all the tasks within the JBPM database. I'm using the following code :
List<Task> liste = taskService.createTaskQuery().list();
But it gives me a list of the first task of each workflow... How could I get the other tasks?
Regards,