mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
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:
@@ -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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user