decitionhandler.java

来自「这是一个jbpm的高级应用,是一个oa工作流的系统,里面用到了spring,hi」· Java 代码 · 共 20 行

JAVA
20
字号
package com.xiangfeng.jbpm.ActionHandler;

import org.jbpm.graph.def.ActionHandler;
import org.jbpm.graph.exe.ExecutionContext;
import org.jbpm.graph.node.DecisionHandler;
import org.omg.PortableServer.portable.Delegate;

public class DecitionHandler implements DecisionHandler{

	

	public String decide(ExecutionContext ctx) throws Exception {
		
		String billNO= ctx.getProcessInstance().getKey();
		System.out.println("------------- from decide     billNO is "+billNO);
		return "转交客服处理";
	}

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?