KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > za > co > csir > icomtek > workflow > interfaces > WorkflowFinder


1 package za.co.csir.icomtek.workflow.interfaces;
2
3 import java.util.List JavaDoc;
4
5 public interface WorkflowFinder {
6
7     /**
8      * This will return a list containing
9      * za.co.csir.icomtek.workflow.model.Workflow objects that
10      * the system knows about. These will be used to initialize the cache.
11      */

12     public List JavaDoc getAllWorkflows () throws Exception JavaDoc;
13
14 }
15
Popular Tags