mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Workflow Checkpoint:
- Process deploy/isDeployed/undeploy implemented in Workflow Service - Servlet implemented to support jBPM Process Designer deployment (using above service) : mapped to /alfresco/jbpm/deployprocess URL - Workflow deployer bootstrap bean (for once- only loading of process definitions at bootstrap) - Initial cut of Review & Approve process definition & Task definitions (bootstrapped) git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@3477 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
59
config/alfresco/model/workflowModel.xml
Normal file
59
config/alfresco/model/workflowModel.xml
Normal file
@@ -0,0 +1,59 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<model name="wf:workflowsmodel" xmlns="http://www.alfresco.org/model/dictionary/1.0">
|
||||
|
||||
<description>Content-oriented Workflows Model</description>
|
||||
<author>Alfresco</author>
|
||||
<version>0.1</version>
|
||||
|
||||
<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>
|
||||
|
||||
</properties>
|
||||
|
||||
<associations>
|
||||
|
||||
<association name="wf:reviewers">
|
||||
<title>Reviewers</title>
|
||||
<source>
|
||||
<mandatory>false</mandatory>
|
||||
<many>false</many>
|
||||
</source>
|
||||
<target>
|
||||
<class>cm:person</class>
|
||||
<mandatory>true</mandatory>
|
||||
<many>false</many>
|
||||
</target>
|
||||
</association>
|
||||
|
||||
</associations>
|
||||
|
||||
</type>
|
||||
|
||||
</types>
|
||||
|
||||
</model>
|
Reference in New Issue
Block a user