Action.java
1 package org.jbpm.gop;
2 
3 /** a command that can be injected into a process execution */
4 public interface Action {
5 
6   /** to be overriden by Action implementations */
7   void execute(Execution execution);
8 }