Package org.activiti.engine

Examples of org.activiti.engine.TaskService.addComment()


        // 设置变量
        Map<String, Object> variables = new HashMap<String, Object>();
        variables.put("skip", true);
        CompleteTaskCmd command = new CompleteTaskCmd(taskEntity.getId(), variables, true);

        taskService.addComment(taskEntity.getId(), taskEntity.getProcessInstanceId(), "自动跳过");

        // 执行命令,直接完成当前任务
//        System.out.println("准备跳过任务:" + taskEntity.getName() + "-->" + taskDefinitionKey);
        managementService.executeCommand(command);
        System.out.println("已跳过任务:" + taskEntity.getName() + "-->" + taskDefinitionKey);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.