I'm developing an Alfresco app in Alfresco Explorer. In this app I create a Space and some content inside it, my question is how to get the space nodeRef when i'm working in a java class inside to list the contents.

Actually I'm trying this:

String nodeId = this.navigator.getCurrentNodeId();
NodeRef parentNodeRef = new NodeRef(Repository.getStoreRef(), nodeId);
List<ChildAssociationRef> children = this.nodeService.getParentAssocs(parentNodeRef);

But Returns null

有帮助吗?

解决方案

It should be the following:

ChildAssociationRef car = this.nodeService.getPrimaryParent(parentNodeRef);
NodeRef parentNode = car.getParentRef();
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top