Hi,
I am using Activiti 6.
I am trying to get all the tasks of a process with Task Type. The need is to Save task details , task Id, task type(Start event, user task etc) with Task Id.
If I go by getting Flow Elements from Process , I get Task types but not task Id.
Found this code snippet in one of forum post, but this doesnt work in Activiti 6. Seems like ActivityImpl is replaced ?
if (processDefinition != null) {
for (ActivityImpl activity : processDefinition.get) {
String type = (String) activity.getProperty("type");
String name = (String) activity.getProperty("name");
String taskId = activity.getId();
System.out.println("type: "+type+" name: "+name + " id: " + taskId);
} }
I have recently started with Activiti so quiet naive at it.
Solved! Go to Solution.
You can use task query from TaskService API provided by engine. inject taskService in your code and create query with appropriate operations.
e.g.
taskService.createTaskQuery().processDefinitionId("your-process-def-id").list();
see javadocs for details on available operations
You can use task query from TaskService API provided by engine. inject taskService in your code and create query with appropriate operations.
e.g.
taskService.createTaskQuery().processDefinitionId("your-process-def-id").list();
see javadocs for details on available operations
Ask for and offer help to other Alfresco Process Services and Activiti Users and members of the Alfresco team.
By using this site, you are agreeing to allow us to collect and use cookies as outlined in Alfresco’s Cookie Statement and Terms of Use (and you have a legitimate interest in Alfresco and our products, authorizing us to contact you in such methods). If you are not ok with these terms, please do not use this website.