Pergunta

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

Foi útil?

Solução

It should be the following:

ChildAssociationRef car = this.nodeService.getPrimaryParent(parentNodeRef);
NodeRef parentNode = car.getParentRef();
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top