Delete/Remove 来自 Nuxeo 的主文件和附件
Delete/Remove main file and attachment from Nuxeo
通过我自己的自定义侦听器,我想从 nuxeo 文档中删除主要文件和附件。
删除文档似乎很容易,因为您可以使用以下代码。
doc.getCoreSession().removeDocument(doc.getRef());
doc.getCoreSession().save();
但是如何通过我的 java 代码删除文件和附件。请提供一段代码。
代码将是..
DocumentHelper.removeProperty(documentModel, path);
path = file:content 主文件。对于附件 "files/content[array index]"
通过我自己的自定义侦听器,我想从 nuxeo 文档中删除主要文件和附件。 删除文档似乎很容易,因为您可以使用以下代码。
doc.getCoreSession().removeDocument(doc.getRef()); doc.getCoreSession().save();
但是如何通过我的 java 代码删除文件和附件。请提供一段代码。
代码将是..
DocumentHelper.removeProperty(documentModel, path);
path = file:content 主文件。对于附件 "files/content[array index]"