1 5 6 package org.exoplatform.services.workflow.delegation; 7 8 import org.jbpm.delegation.decision.ExpressionDecisionHandler; 9 import org.jbpm.delegation.ExecutionContext; 10 11 16 public class MockDecisionHandler extends ExpressionDecisionHandler { 17 18 public String decide(ExecutionContext executionContext) { 19 System.out.println( "Start Date : " + executionContext.getVariable("start.date")); 20 System.out.println("decide in MockDecisionHandler : " + executionContext.getNode().getName()); 21 return "enough holidays"; 22 } 23 24 } 25 | Popular Tags |