Files
alfresco-community-repo/rm-community/rm-community-repo/config/alfresco/workflow/rmWorkflowModel.xml
2016-09-23 10:34:36 +01:00

62 lines
1.8 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<model name="rmwf:workflowmodel" xmlns="http://www.alfresco.org/model/dictionary/1.0">
<imports>
<import uri="http://www.alfresco.org/model/dictionary/1.0" prefix="d"/>
<import uri="http://www.alfresco.org/model/content/1.0" prefix="cm" />
<import uri="http://www.alfresco.org/model/bpm/1.0" prefix="bpm"/>
</imports>
<namespaces>
<namespace uri="http://www.alfresco.org/model/rmworkflow/1.0" prefix="rmwf"/>
</namespaces>
<types>
<type name="rmwf:workflowTask">
<parent>bpm:workflowTask</parent>
<properties>
<property name="rmwf:requestedInformation">
<type>d:text</type>
<mandatory>true</mandatory>
</property>
<property name="rmwf:message">
<type>d:text</type>
<mandatory>true</mandatory>
</property>
</properties>
</type>
<type name="rmwf:submitRequestInfoTask">
<parent>rmwf:workflowTask</parent>
<associations>
<association name="rmwf:mixedAssignees">
<source>
<mandatory>false</mandatory>
<many>false</many>
</source>
<target>
<class>cm:authority</class>
<mandatory>true</mandatory>
<many>true</many>
</target>
</association>
</associations>
</type>
<type name="rmwf:requestInfoTask">
<parent>rmwf:workflowTask</parent>
</type>
<type name="rmwf:reviewRequestInfoTask">
<parent>rmwf:workflowTask</parent>
<overrides>
<property name="bpm:reassignable">
<default>false</default>
</property>
</overrides>
</type>
</types>
</model>