我需要获取某个用户的 JavaDelegate 类属性,该用户是某个组的成员。
例如,当我向用户提供节点引用时,我可以通过这种方式获取他的属性
QName PROP_QNAME_EMAIL = QName.createQName("http://www.alfresco.org/model/content/1.0", "email");
Map<QName, Serializable> properties = nodeService.getProperties(nodeRef);
properties.get(PROP_QNAME_EMAIL);
但问题是现在我只有 GROUP NAME,我不知道如何获取该组中用户的 NodeRef?对此有什么帮助吗?
问候, 亚历山大