首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

jbpm工作流 在任务施行过程中关闭

2012-10-26 
jbpm工作流 在任务执行过程中关闭TaskService taskService processEngine.getTaskService()TopupContra

jbpm工作流 在任务执行过程中关闭

TaskService taskService = processEngine.getTaskService();TopupContract topupContract = topupContractService.readTopupContract(id);ExecutionService executionService = processEngine.getExecutionService();Task task = taskService.getTask(this.getTaskId());Execution execution = executionService.findExecutionById(task.getExecutionId());Execution processInstance = execution.getProcessInstance();taskService.completeTask(this.getTaskId());processEngine.getExecutionService().deleteProcessInstance(processInstance.getId());

热点排行