mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
More ALF-588: MT - delete tenant requires deleteStore
- Reintroduced testDeleteStore - Added 'protocolsToIgnore' property to index recovery components - Added 'deleted' protocol to all ignorable store settings (ADM indexer, index recovery) - Return 'NodeRef.Status' for transaction changes queries (removes N+1 calls back to NodeService) git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@22290 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -140,6 +140,12 @@ public class NodeEntity implements Node
|
||||
return new NodeRef(store.getStoreRef(), uuid);
|
||||
}
|
||||
|
||||
public NodeRef.Status getNodeStatus()
|
||||
{
|
||||
NodeRef nodeRef = new NodeRef(store.getStoreRef(), uuid);
|
||||
return new NodeRef.Status(nodeRef, transaction.getChangeTxnId(), transaction.getId(), deleted);
|
||||
}
|
||||
|
||||
public Pair<Long, NodeRef> getNodePair()
|
||||
{
|
||||
return new Pair<Long, NodeRef>(id, getNodeRef());
|
||||
|
Reference in New Issue
Block a user