子token 节点名称

String departmentName = executionContext.getNode().getName();
通过executionContext可以得到当前节点的名称。当前节点可以是单独的tasknode节点,也可以是在fork 节点下的tasknode节点。


public class Jbpm_06_CurrentNode extends TestCase {
static JbpmConfiguration jbpmConfiguration = JbpmConfiguration.getInstance();

//公文当前处在哪个节点上
public void testCurrentNode(){

//JbpmContext对象封装了hibernate session对象的功能,可以执行与数据库持久化相关的操作
JbpmContext context = jbpmConfiguration.createJbpmContext();

try {
long processInstanceId = 12;
ProcessInstance processInstance = context.loadProcessInstance(processInstanceId);
Token token = processInstance.getRootToken();
System.err.println("rootToken节点名:"+token.getNode().getName());
//token.signal();
//System.err.println(""+token.getNode());
Iterator iterator = token.getChildren().keySet().iterator();

while(iterator.hasNext()) {
Token childtoken=(Token)token.getChildren().get(iterator.next());
System.err.println("token:"+token.getNode());
System.err.println("childtoken:"+childtoken.getNode());
//childtoken.signal();
}
// System.err.println(token.getNode());
context.save(processInstance);
}finally {
context.close();
}
}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值