Interface IBaseWorkflowModule

All Superinterfaces:
IModule, Remote
All Known Subinterfaces:
IWorkflowModule
All Known Implementing Classes:
com.axemble.vdoc.sdk.impl.ProcessWorkflowModule, ReportProcessWorkflowModule, WorkflowModuleImpl

public interface IBaseWorkflowModule extends IModule
The IBaseWorkflowModule interface is the main entry point from where most of the methods to manipulate the full set of work-flow document objects are made available.

Code sample :

 // creation of a workflow module object
 IBaseWorkflowModule workflowModule = Modules.getWorkflowModule();
 try
 {
 }
 finally
 {
  // uninitialize the module
        Modules.releaseModule(workflowModule);
 }
 

Author:
vlygeros