SAIL-234: Partially implemented NodeBulkLoader interface

- Currently still need to pre-load aspects to get rid of N+1 on hasAspect during directory listings


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@20929 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley
2010-07-03 12:47:50 +00:00
parent 8f681ca8d3
commit 5ad8b75240
8 changed files with 426 additions and 21 deletions

View File

@@ -39,6 +39,8 @@ public class NodePropertyEntity
private NodePropertyValue value;
/** Carries data for queries and updates */
private List<Long> qnameIds;
/** Carries data for queries */
private List<Long> nodeIds;
/**
* Required default constructor
@@ -92,4 +94,14 @@ public class NodePropertyEntity
{
this.qnameIds = qnameIds;
}
public List<Long> getNodeIds()
{
return nodeIds;
}
public void setNodeIds(List<Long> nodeIds)
{
this.nodeIds = nodeIds;
}
}