mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@3614 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
160 lines
4.4 KiB
XML
160 lines
4.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<model name="wf: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/workflow/1.0" prefix="wf"/>
|
|
</namespaces>
|
|
|
|
<types>
|
|
|
|
<!-- -->
|
|
<!-- Basic Review & Approve Tasks -->
|
|
<!-- -->
|
|
|
|
<type name="wf:submitReviewTask">
|
|
<title>Submit Review Task</title>
|
|
<parent>bpm:workflowTask</parent>
|
|
|
|
<properties>
|
|
|
|
<property name="wf:reviewDueDate">
|
|
<title>Review Due Date</title>
|
|
<type>d:date</type>
|
|
</property>
|
|
|
|
<property name="wf:reviewPriority">
|
|
<title>Review Priority</title>
|
|
<type>d:int</type>
|
|
<default>2</default>
|
|
<constraints>
|
|
<constraint ref="bpm:allowedPriority"/>
|
|
</constraints>
|
|
</property>
|
|
|
|
</properties>
|
|
|
|
<associations>
|
|
|
|
<association name="wf:reviewer">
|
|
<title>Reviewer</title>
|
|
<source>
|
|
<mandatory>false</mandatory>
|
|
<many>false</many>
|
|
</source>
|
|
<target>
|
|
<class>cm:person</class>
|
|
<mandatory>true</mandatory>
|
|
<many>false</many>
|
|
</target>
|
|
</association>
|
|
|
|
</associations>
|
|
|
|
<overrides>
|
|
|
|
<property name="bpm:packageActionGroup">
|
|
<default>workflow_collection_actions</default>
|
|
</property>
|
|
|
|
<property name="bpm:packageItemActionGroup">
|
|
<default>workflow_item_collection_actions</default>
|
|
</property>
|
|
|
|
</overrides>
|
|
|
|
</type>
|
|
|
|
|
|
<type name="wf:reviewTask">
|
|
<title>Review Task</title>
|
|
<parent>bpm:workflowTask</parent>
|
|
|
|
<overrides>
|
|
|
|
<property name="bpm:packageItemActionGroup">
|
|
<default>workflow_item_edit_actions</default>
|
|
</property>
|
|
|
|
</overrides>
|
|
|
|
</type>
|
|
|
|
|
|
|
|
<!-- -->
|
|
<!-- Adhoc Tasks -->
|
|
<!-- -->
|
|
|
|
|
|
<type name="wf:baseAdhocTask">
|
|
<parent>bpm:workflowTask</parent>
|
|
|
|
<properties>
|
|
<property name="wf:adhocDescription">
|
|
<title>Description</title>
|
|
<type>d:text</type>
|
|
</property>
|
|
</properties>
|
|
</type>
|
|
|
|
<type name="wf:submitAdhocTask">
|
|
<title>Submit Adhoc Task</title>
|
|
<parent>wf:baseAdhocTask</parent>
|
|
|
|
<properties>
|
|
<property name="wf:adhocDueDate">
|
|
<title>Due Date</title>
|
|
<type>d:date</type>
|
|
</property>
|
|
|
|
<property name="wf:adhocPriority">
|
|
<title>Priority</title>
|
|
<type>d:int</type>
|
|
<default>2</default>
|
|
<constraints>
|
|
<constraint ref="bpm:allowedPriority"/>
|
|
</constraints>
|
|
</property>
|
|
|
|
<property name="wf:notifyMe">
|
|
<title>Email Notification</title>
|
|
<type>d:boolean</type>
|
|
</property>
|
|
</properties>
|
|
|
|
<associations>
|
|
<association name="wf:assignee">
|
|
<title>Assignee</title>
|
|
<source>
|
|
<mandatory>false</mandatory>
|
|
<many>false</many>
|
|
</source>
|
|
<target>
|
|
<class>cm:person</class>
|
|
<mandatory>true</mandatory>
|
|
<many>false</many>
|
|
</target>
|
|
</association>
|
|
</associations>
|
|
</type>
|
|
|
|
<type name="wf:adhocTask">
|
|
<title>Adhoc Task</title>
|
|
<parent>wf:baseAdhocTask</parent>
|
|
</type>
|
|
|
|
<type name="wf:completedAdhocTask">
|
|
<title>Completed Adhoc Task</title>
|
|
<parent>wf:baseAdhocTask</parent>
|
|
</type>
|
|
|
|
</types>
|
|
|
|
</model> |