1 5 6 package org.exoplatform.services.workflow.delegation; 7 8 import org.jbpm.model.definition.Delegation; 9 import org.jbpm.delegation.ActionHandler; 10 import org.jbpm.delegation.ExecutionContext; 11 12 17 public class MockActionHandler implements ActionHandler { 18 public void execute(ExecutionContext executionContext) { 19 System.out.println("MockActionHandlerCalled"); 20 } 21 } 22 | Popular Tags |