KickJava   Java API By Example, From Geeks To Geeks.

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


1 package za.co.csir.icomtek.workflow.interfaces;
2
3 public interface WorkflowModuleInvoker {
4
5     /**
6      * This method will invoke the named operation on the named system
7      * module passing the workflowContext as a parameter
8      *
9      * @param moduleName identifies the module
10      * @param operation identifies the operation to perform on the module
11      * @param ctx is the context containing the name value pairs from the
12      * workflow action definition
13      * @return is the object, if any that the module invoke returns
14      */

15     public Object JavaDoc invokeOpOnModule (String JavaDoc moduleName, String JavaDoc operation,
16                                     WorkflowContext ctx) throws Exception JavaDoc;
17
18 }
19
Popular Tags