Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想更改Alfresco服务器上的节点名称。
我正在使用适用于 Android 的 Alfresco Mobile SDK和网站上提供的文档。我发现没有困难的节点名称:getName(),但是没有setName()的方法,我想知道一种为节点设置名称的方法。
也许这个功能很有用,但我还不够如何使用属性映射:
public Node updateProperties(Node node, Map<String, Serializable> properties)
在此先感谢您的帮助。
使用节点调用该方法,如下所示:
Map<String, Serializable> properties = new HashMap<String, Serializable>(); properties.put(ContentModel.PROP_NAME, "nodename"); // like this: documentFolderService.updateProperties(myNode, properties);