Minor change in creation of child assoc. qname now matches assocTypeQName

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@13851 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Neil McErlean
2009-04-06 12:51:20 +00:00
parent b3a4b60f1d
commit 132fdb81cb

View File

@@ -1133,8 +1133,9 @@ class AddChildAssocCommand extends AbstractAssocCommand
return; return;
} }
} }
//TODO What value should we put in this final qname parameter? // We are following the behaviour of the JSF client here in using the same
nodeService.addChild(sourceNodeRef, targetNodeRef, assocQName, QName.createQName("child")); // QName value for the 3rd and 4th parameters in the below call.
nodeService.addChild(sourceNodeRef, targetNodeRef, assocQName, assocQName);
} }
} }