如何在社区Alfresco中设置标题和描述



我有一个存储库,通过露天网站,当我在存储库中创建文件夹时,我可以设置名称、标题和描述。

然而,如果我试图通过opencmis-java创建相同的属性,我会得到错误"属性'cmis:title'对此类型或某个辅助类型无效!"

这是我的代码:

Map<String, String> newFolderProps = new HashMap<String, String>();
newFolderProps.put(PropertyIds.NAME, "this is my new folder");
newFolderProps.put("cmis:description", "this is my description");  //this doesn't work.
newFolderProps.put("cmis:title", "this is my title"); //this doesn't work.
//I also tried this too:
newFolderProps.put(PropertyIds.DESCRIPTION, "this is my description");  //this doesn't work either.
newFolderProps.put(PropertyIds.OBJECT_TYPE_ID, "cmis:folder");  //this works!
Folder newFolderObject=rootfolder.createFolder(newFolderProps);

我也试过"厘米:描述",但也不起作用。

在Alfresco中创建新文件夹时,如何设置标题和描述?

这两个特定属性是在一个名为cm:titled的方面中定义的。CMIS本机不支持特性。为了使用方面中定义的方面和属性,您必须使用Alfresco OpenCMIS扩展。

我已经创建了一个要点,它是一个工作类,你可以编译并运行它,它将创建一个文件夹(如果它不存在),设置描述和标题,然后在该文件夹中创建一个文档,并在上面设置描述和名称。

关键位是使用Alfresco对象工厂建立会话的位置:

parameter.put(SessionParameter.OBJECT_FACTORY_CLASS, "org.alfresco.cmis.client.impl.AlfrescoObjectFactoryImpl");

然后,当您指定类型时,还必须指定方面:

properties.put(PropertyIds.OBJECT_TYPE_ID, "cmis:folder, P:cm:titled");

其余的属性与您拥有的一样工作,但请注意属性名称,它们是cm:description和cm:title:

properties.put(PropertyIds.NAME, folderName);
properties.put("cm:description", TEST_DESCRIPTION);
properties.put("cm:title", TEST_TITLE);

您不再需要使用自定义Alfresco类来设置辅助属性。使用Apache Chemistry CMIS 1.1.0客户端;

Map<String, Object> props = new HashMap<>();
props.put(PropertyIds.OBJECT_TYPE_ID, "cmis:document");
props.put(PropertyIds.NAME, "my-doc.txt");
List<String> secondary = new ArrayList<>();
secondary.add("P:cm:titled");
props.put(PropertyIds.SECONDARY_OBJECT_TYPE_IDS, secondary);
props.put("cm:title", "My Very Fancy Document");
props.put("cm:description", "This document was generated by me!");

无需进一步更改代码。如果你使用的是旧的Alfresco,这可能不起作用,但大多数当前安装都可以开箱即用。

相关内容

  • 没有找到相关文章