Workflow:

- Fix failing test due to incorrect comparisons of id
- Further consolidation of id, name, title & description properties of workflow objects

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@3563 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
David Caruana
2006-08-22 10:41:18 +00:00
parent 4005f36bfb
commit aabbd7e00b
5 changed files with 25 additions and 15 deletions

View File

@@ -27,6 +27,9 @@ public class WorkflowDefinition
/** Workflow Definition unique id */
public String id;
/** Workflow Definition name */
public String name;
/** Workflow Definition version */
public String version;

View File

@@ -26,6 +26,9 @@ package org.alfresco.service.cmr.workflow;
*/
public class WorkflowNode
{
/** Workflow Node Name */
public String name;
/** Workflow Node Title (Localised) */
public String title;

View File

@@ -34,6 +34,9 @@ public class WorkflowTask
/** Unique id of Task */
public String id;
/** Task Name */
public String name;
/** Task Title (Localised) */
public String title;