zhx:rm
我在 Alfresco 中定义了一个新类型,它具有定义属性的强制方面zhx:taskNo
。
我创建了一个这种类型的文档,并设置了它的zhx:taskNo
值。
使用 OpenCMIS Workbench 0.10.0,我打开了这个文档的属性。
问题: zhx:taskNo
未显示。
难道我做错了什么?
这是 Alfresco 的预期行为吗?
虽然 CMIS Extensions 可能是一种解决方案,但我不想使用它们,因为它会使代码更难管理。
<types>
<type name="zhx:rm">
<title>RM</title>
<parent>cm:content</parent>
<mandatory-aspects>
<aspect>zhx:rmAspect</aspect>
</mandatory-aspects>
</type>
</types>
<aspects>
<aspect name="zhx:rmAspect">
<title>RM Aspect</title>
<properties>
<property name="zhx:taskNo">
<type>d:text</type>
<index enabled="true">
<atomic>true</atomic>
<stored>true</stored>
<tokenized>both</tokenized>
</index>
</property>
</properties>
</aspect>
</aspects>