KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jbpm > graph > node > DecisionHandler


1 package org.jbpm.graph.node;
2
3 import java.io.Serializable JavaDoc;
4
5 import org.jbpm.graph.exe.ExecutionContext;
6
7 /**
8  * decision handler as in jbpm 2.
9  */

10 public interface DecisionHandler extends Serializable JavaDoc {
11
12   String JavaDoc decide(ExecutionContext executionContext) throws Exception JavaDoc;
13
14 }
15
Popular Tags