bpmConfBaseManager.save(bpmConfBase);
}
BpmnModel bpmnModel = new GetBpmnModelCmd(processDefinitionId)
.execute(commandContext);
Graph graph = new FindGraphCmd(processDefinitionId)
.execute(commandContext);
this.processGlobal(bpmnModel, 1, bpmConfBase);
int priority = 2;
for (Node node : graph.getNodes()) {
if ("exclusiveGateway".equals(node.getType())) {
continue;
} else if ("userTask".equals(node.getType())) {
this.processUserTask(node, bpmnModel, priority++, bpmConfBase);
} else if ("startEvent".equals(node.getType())) {