1 package org.jbpm.tutorial.action; 2 3 import org.jbpm.graph.def.*; 4 import org.jbpm.graph.exe.*; 5 6 public class MyActionHandler implements ActionHandler { 9 10 private static final long serialVersionUID = 1L; 11 12 public static boolean isExecuted = false; 15 16 public void execute(ExecutionContext executionContext) { 20 isExecuted = true; 21 } 22 } 23 | Popular Tags |