KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jbpm > graph > def > ActionHandler


1 package org.jbpm.graph.def;
2
3 import java.io.*;
4
5 import org.jbpm.graph.exe.*;
6
7 public interface ActionHandler extends Serializable {
8   
9   void execute( ExecutionContext executionContext ) throws Exception JavaDoc;
10 }
11
Popular Tags