문제

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