如何知道Alfresco中的当前空间nodeRef?

时间:2014-04-28 11:20:24

标签: java alfresco

我正在Alfresco Explorer中开发一个Alfresco应用程序。在这个应用程序中,我创建了一个空间及其中的一些内容,我的问题是当我在java类中工作以列出内容时如何获取空间nodeRef。

其实我正在尝试这个:

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

但返回null

1 个答案:

答案 0 :(得分:1)

应该如下:

ChildAssociationRef car = this.nodeService.getPrimaryParent(parentNodeRef);
NodeRef parentNode = car.getParentRef();