use of org.kie.workbench.common.stunner.bpmn.backend.converters.fromstunner.properties.UserTaskPropertyWriter in project kie-wb-common by kiegroup.
the class TaskConverter method userTask.
private PropertyWriter userTask(Node<View<UserTask>, ?> n) {
org.eclipse.bpmn2.UserTask task = bpmn2.createUserTask();
task.setId(n.getUUID());
UserTask definition = n.getContent().getDefinition();
UserTaskPropertyWriter p = propertyWriterFactory.of(task);
TaskGeneralSet general = definition.getGeneral();
p.setName(general.getName().getValue());
p.setDocumentation(general.getDocumentation().getValue());
p.setSimulationSet(definition.getSimulationSet());
UserTaskExecutionSet executionSet = definition.getExecutionSet();
p.setTaskName(executionSet.getTaskName().getValue());
p.setActors(executionSet.getActors());
p.setGroupId(executionSet.getGroupid().getValue());
p.setAssignmentsInfo(executionSet.getAssignmentsinfo());
p.setAsync(executionSet.getIsAsync().getValue());
p.setSkippable(executionSet.getSkippable().getValue());
p.setPriority(executionSet.getPriority().getValue());
p.setSubject(executionSet.getSubject().getValue());
p.setDescription(executionSet.getDescription().getValue());
p.setAdHocAutostart(executionSet.getAdHocAutostart().getValue());
p.setCreatedBy(executionSet.getCreatedBy().getValue());
p.setOnEntryAction(executionSet.getOnEntryAction());
p.setOnExitAction(executionSet.getOnExitAction());
p.setBounds(n.getContent().getBounds());
return p;
}
Aggregations