📄 executenodejob.java
字号:
package org.jbpm.job;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.jbpm.JbpmContext;
import org.jbpm.graph.def.Node;
import org.jbpm.graph.exe.ExecutionContext;
import org.jbpm.graph.exe.Token;
public class ExecuteNodeJob extends Job {
private static final long serialVersionUID = 1L;
Node node;
public ExecuteNodeJob() {
}
public ExecuteNodeJob(Token token) {
super(token);
}
public boolean execute(JbpmContext jbpmContext) throws Exception {
log.debug("job["+id+"] executes "+node);
token.unlock(this.toString());
ExecutionContext executionContext = new ExecutionContext(token);
node.execute(executionContext);
jbpmContext.save(token);
return true;
}
public Node getNode() {
return node;
}
public void setNode(Node node) {
this.node = node;
}
private static Log log = LogFactory.getLog(ExecuteNodeJob.class);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -