| java.lang.Object org.obe.server.WorkflowServer
WorkflowServer | public class WorkflowServer (Code) | | The WorkflowServer class is a wrapper around a WorkflowEngine which
provides facilities for persisting process definitions to the file
system as well as invoking certain WorkflowEngine methods.
author: Anthony Eden |
executeAsynch | public String executeAsynch(String packageId, String workflowId, Vector parameters) throws Exception(Code) | | Execute the given workflow process asynchronously. Workflow processes
are identified by a combination of the package ID and the workflow
ID.
Parameters: packageId - The package ID Parameters: workflowId - The workflow process ID Parameters: parameters - Parameters The PID for the workflow process instance |
executeSynch | public Vector executeSynch(String packageId, String workflowId, Vector parameters) throws Exception(Code) | | Execute the given workflow process synchronously. Workflow processes
are identified by a combination of the package ID and the workflow
ID.
Parameters: packageId - The package ID Parameters: workflowId - The workflow process ID Parameters: parameters - Parameters The result data |
getPackageDefinitions | public Vector getPackageDefinitions()(Code) | | Get all package definitions as a Vector of XML documents.
The Vector of package definition documents |
getPackageDefinitionsLastModified | public double getPackageDefinitionsLastModified()(Code) | | |
uploadPackage | public void uploadPackage(String packageDefinition)(Code) | | |
|
|