Workflow:

1) Support for localisation of all Workflow definitions
2) Consolidate on id, title & description fields for all Workflow API objects
3) Add WorkflowTransition object to Workflow APIs
4) Fix up damage of above changes (web client etc)

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@3528 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
David Caruana
2006-08-16 18:07:27 +00:00
parent ebd29c8548
commit 08fd4699f5
4 changed files with 10 additions and 16 deletions

View File

@@ -58,7 +58,7 @@ public class JBPMDeployProcessServlet extends HttpServlet
response.setContentType("text/html");
InputStream deploymentArchive = getDeploymentArchive(request);
WorkflowDefinition workflowDef = deployArchive(deploymentArchive);
response.getWriter().println("Deployed archive " + workflowDef.name + " successfully");
response.getWriter().println("Deployed archive " + workflowDef.title + " successfully");
}
catch(IOException e)
{