Unit test for NodeService.getChildAssocsByPropertyValue

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@21882 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Mark Rogers
2010-08-19 17:10:20 +00:00
parent 2d6fd30803
commit 127100a4a1
6 changed files with 150 additions and 7 deletions

View File

@@ -6,17 +6,17 @@ package org.alfresco.repo.domain.node;
*/
public class ChildPropertyEntity
{
private Long nodeId;
private Long parentNodeId;
private Long propertyQNameId;
private NodePropertyValue value;
public void setNodeId(Long nodeId)
public void setParentNodeId(Long nodeId)
{
this.nodeId = nodeId;
this.parentNodeId = nodeId;
}
public Long getNodeId()
public Long getParentNodeId()
{
return nodeId;
return parentNodeId;
}
public void setPropertyQNameId(Long propertyQNameId)
{