1) Minor mods to Rhinoscript Actions

- rename createAction to create
- add (read-only) name property to action
2) Addition of createPackage to Workflow Service API (no implementation yet)

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@3510 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
David Caruana
2006-08-15 12:52:19 +00:00
parent 354834c25f
commit dc51984cce
7 changed files with 42 additions and 18 deletions

View File

@@ -211,8 +211,13 @@ public interface WorkflowService
*/
public WorkflowTask endTask(String taskId, String transition);
// todo: workflow package apis
// createPackage
/**
* Create a Workflow Package (a container of content to route through the Workflow)
*
* @param workflowDefinitionId workflow definition id
* @param container (optional) a pre-created container (e.g. folder, versioned folder or layered folder)
* @return the workflow package
*/
public NodeRef createPackage(String workflowDefinitionId, NodeRef container);
}