- first pass at summary screen for create form.

- making workflowdefinition immutable and adding getters so i can access bean properties from jsps.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@4391 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Ariel Backenroth
2006-11-17 20:51:01 +00:00
parent 906874b537
commit 19facbdd97
9 changed files with 142 additions and 19 deletions

View File

@@ -73,6 +73,12 @@ public class RenderingEngineTemplateImpl
return (String)nodeService.getProperty(this.nodeRef, ContentModel.PROP_NAME);
}
public String getTitle()
{
final NodeService nodeService = this.getServiceRegistry().getNodeService();
return (String)nodeService.getProperty(this.nodeRef, ContentModel.PROP_TITLE);
}
public String getDescription()
{
final NodeService nodeService = this.getServiceRegistry().getNodeService();