Alfresco:发现 1 个完整性违规:关联源类型不正确

Alfresco: Found 1 integrity violations: The association source type is incorrect

我想创建 vncr:sender 节点作为 nvcr:senders 节点(自定义类型)的子节点。

vncr:发件人模型:

    <type name="vncr:senders">
        <title>Courrier senders</title>
        <parent>cm:content</parent>
        <associations>
            <child-association name="vncr:contains_sender">
                <source>
                    <mandatory>false</mandatory>
                    <many>false</many>
                </source>
                <target>
                    <class>vncr:sender</class>
                    <mandatory>false</mandatory>
                    <many>true</many>
                </target>
                <duplicate>false</duplicate>
            </child-association>
        </associations>
    </type>

vncr:发件人模型

    <type name="vncr:sender">
        <title>Courrier sender</title>
        <parent>cm:content</parent>
        <properties>
            <property name="vncr:name_sender">
                <type>d:text</type>
                <mandatory>true</mandatory>
                <multiple>false</multiple>
            </property>
            <property name="vncr:email_sender">
                <type>d:text</type>
                <mandatory>true</mandatory>
            </property>
        </properties>
    </type>

模板实例组件

    <component>
        <region-id>sender</region-id>
        <url>/components/form?mimeType={mimeType}</url>
        <properties>
            <itemKind>type</itemKind>
            <itemId>vncr:sender</itemId>
            <destination>{destination}</destination>
            <mode>create</mode>
            <submitType>json</submitType>
            <showCaption>true</showCaption>
            <showCancelButton>true</showCancelButton>
            <htmlid>{htmlid}</htmlid>
        </properties>
    </component>

当我提交表单时,我得到以下回复

"message" : "06040016 Found 1 integrity violations:\nThe association source type is incorrect: \n Source Node: workspace://SpacesStore/c7ccd6bc-4e0c-4662-8660-58d263a81e4d\n
Association: Association[ class=ClassDef[name={http://www.alfresco.org/model/content/1.0}folder], name={http://www.alfresco.org/model/content/1.0}contains, target class={http://www.alfresco.org/model/system/1.0}base, source role=null, target role=null]\n Required Source Type: {http://www.alfresco.org/model/content/1.0}folder\n Actual Source Type: {http://www.vneuron.com/model/courrier/1.0}senders",

"exception" : "org.alfresco.repo.node.integrity.IntegrityException - 06040016 Found 1 integrity violations:\nThe association source type is incorrect: \n Source Node: workspace://SpacesStore/c7ccd6bc-4e0c-4662-8660-58d263a81e4d\n
Association: Association[ class=ClassDef[name={http://www.alfresco.org/model/content/1.0}folder], name={http://www.alfresco.org/model/content/1.0}contains, target class={http://www.alfresco.org/model/system/1.0}base, source role=null, target role=null]\n Required Source Type: {http://www.alfresco.org/model/content/1.0}folder\n Actual Source Type: {http://www.vneuron.com/model/courrier/1.0}senders",

您正试图在 "cm:content" 下创建一个 "cm:content",我认为这是不可能的。错误消息也试图通过说它期望 "cm:folder".

来传达这一点

请注意,您可以关联两个 cm:content 节点,但不能关联 parent/child。