mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
- updated comment with correct eg workflow definition name
- fixed typo git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5958 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -124,7 +124,7 @@ public interface WorkflowService
|
|||||||
/**
|
/**
|
||||||
* Gets the latest Workflow Definition by unique name
|
* Gets the latest Workflow Definition by unique name
|
||||||
*
|
*
|
||||||
* @param workflowName workflow name e.g. jbpm://review
|
* @param workflowName workflow name e.g. jbpm$wf:review
|
||||||
* @return the deployed workflow definition (or null if not found)
|
* @return the deployed workflow definition (or null if not found)
|
||||||
*/
|
*/
|
||||||
@Auditable(parameters = {"workflowName"})
|
@Auditable(parameters = {"workflowName"})
|
||||||
@@ -133,7 +133,7 @@ public interface WorkflowService
|
|||||||
/**
|
/**
|
||||||
* Gets all (including previous) Workflow Definitions for the given unique name
|
* Gets all (including previous) Workflow Definitions for the given unique name
|
||||||
*
|
*
|
||||||
* @param workflowName workflow name e.g. jbpm://review
|
* @param workflowName workflow name e.g. jbpm$wf:review
|
||||||
* @return the deployed workflow definition (or null if not found)
|
* @return the deployed workflow definition (or null if not found)
|
||||||
*/
|
*/
|
||||||
@Auditable(parameters = {"workflowName"})
|
@Auditable(parameters = {"workflowName"})
|
||||||
@@ -178,7 +178,7 @@ public interface WorkflowService
|
|||||||
* Gets all "in-flight" workflow instances of the specified Workflow Definition
|
* Gets all "in-flight" workflow instances of the specified Workflow Definition
|
||||||
*
|
*
|
||||||
* @param workflowDefinitionId the workflow definition id
|
* @param workflowDefinitionId the workflow definition id
|
||||||
* @return the list of "in-fligth" workflow instances
|
* @return the list of "in-flight" workflow instances
|
||||||
*/
|
*/
|
||||||
@Auditable(parameters = {"workflowDefinitionId"})
|
@Auditable(parameters = {"workflowDefinitionId"})
|
||||||
public List<WorkflowInstance> getActiveWorkflows(String workflowDefinitionId);
|
public List<WorkflowInstance> getActiveWorkflows(String workflowDefinitionId);
|
||||||
@@ -211,7 +211,7 @@ public interface WorkflowService
|
|||||||
public Map<QName, Serializable> getPathProperties(String pathId);
|
public Map<QName, Serializable> getPathProperties(String pathId);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Cancel an "in-fligth" Workflow instance
|
* Cancel an "in-flight" Workflow instance
|
||||||
*
|
*
|
||||||
* @param workflowId the workflow instance to cancel
|
* @param workflowId the workflow instance to cancel
|
||||||
* @return an updated representation of the workflow instance
|
* @return an updated representation of the workflow instance
|
||||||
@@ -220,7 +220,7 @@ public interface WorkflowService
|
|||||||
public WorkflowInstance cancelWorkflow(String workflowId);
|
public WorkflowInstance cancelWorkflow(String workflowId);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Delete an "in-fligth" Workflow instance
|
* Delete an "in-flight" Workflow instance
|
||||||
*
|
*
|
||||||
* NOTE: This will force a delete, meaning that the workflow instance may not
|
* NOTE: This will force a delete, meaning that the workflow instance may not
|
||||||
* go through all the appropriate cancel events.
|
* go through all the appropriate cancel events.
|
||||||
|
Reference in New Issue
Block a user