Files
alfresco-community-repo/rm-server/config/alfresco/workflow/rmWorkflowModel.xml
Roy Wetherall ebe454f13e Revert to original code structure pre-mavenization
* merges from previous branches are now possible without tree conflicts
  * added back missing commits when structure was changed (r59445, r59446) .. see RM-765
  * updated Maven POM's to use existing code structure
  * NOTE: r59454 and r59473 may have been missed in this update .. will go back and re-add



git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/modules/recordsmanagement/HEAD@59491 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2014-01-08 06:38:59 +00: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>