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 ;10 }11