Workflow group / pooled tasks support

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@4892 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
David Caruana
2007-01-22 10:34:18 +00:00
parent 9f865ddc57
commit 38dd0bed73
8 changed files with 294 additions and 18 deletions

View File

@@ -160,6 +160,11 @@ public class UIAssociationEditor extends BaseAssociationEditor
{
out.write(User.getFullName(nodeService, targetNode));
}
else if (ContentModel.TYPE_AUTHORITY_CONTAINER.equals(nodeService.getType(targetNode)))
{
String groupName = (String)nodeService.getProperty(targetNode, ContentModel.PROP_AUTHORITY_NAME);
out.write(groupName.substring("GROUP_".length()));
}
else
{
out.write(Repository.getDisplayPath(nodeService.getPath(targetNode)));