Interface IWorkflowModule

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

public interface IWorkflowModule extends IBaseWorkflowModule
The IWorkflowModule 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
 IWorkflowModule workflowModule = Modules.getWorkflowModule();
 try
 {
 }
 finally
 {
  // uninitialize the module
        Modules.releaseModule(workflowModule);
 }
 

Author:
vlygeros