1 package org.jbpm.graph.node;2 3 import java.io.Serializable ;4 5 import org.jbpm.graph.exe.ExecutionContext;6 7 /**8 * decision handler as in jbpm 2.9 */10 public interface DecisionHandler extends Serializable {11 12 String decide(ExecutionContext executionContext) throws Exception ;13 14 }15