messageactionhandler.java

来自「对jbpm工作流进行简单的实现与操作」· Java 代码 · 共 25 行

JAVA
25
字号
package com.sample.action;import org.jbpm.graph.def.ActionHandler;import org.jbpm.graph.exe.ExecutionContext;public class MessageActionHandler implements ActionHandler {	private static final long serialVersionUID = 1L;		/**	 * The message member gets its value from the configuration in the 	 * processdefinition. The value is injected directly by the engine. 	 */	String message;	/**	 * A message process variable is assigned the value of the message	 * member. The process variable is created if it doesn't exist yet.	 */	public void execute(ExecutionContext context) throws Exception {		context.getContextInstance().setVariable("message", message);	}}

⌨️ 快捷键说明

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