mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
Implementing workflow instance image in ActivitiWorkflowEngine (+tests) and updated activiti admin-ui fixing popup-bug
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@28333 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -1,12 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
|
||||
<definitions id="adhoc-definitions"
|
||||
typeLanguage="http://www.w3.org/2001/XMLSchema"
|
||||
expressionLanguage="http://www.w3.org/1999/XPath"
|
||||
targetNamespace="http://activiti.org/bpmn20"
|
||||
xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:activiti="http://activiti.org/bpmn">
|
||||
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:activiti="http://activiti.org/bpmn"
|
||||
xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:omgdc="http://www.omg.org/spec/DD/20100524/DC"
|
||||
xmlns:omgdi="http://www.omg.org/spec/DD/20100524/DI" typeLanguage="http://www.w3.org/2001/XMLSchema"
|
||||
expressionLanguage="http://www.w3.org/1999/XPath" targetNamespace="http://alfresco.org">
|
||||
|
||||
<process id="activitiAdhoc" name="Adhoc Activiti Process">
|
||||
|
||||
@@ -77,6 +75,42 @@
|
||||
|
||||
<endEvent id="theEnd" />
|
||||
|
||||
</process>
|
||||
</process>
|
||||
|
||||
<!-- Graphical representaion of diagram -->
|
||||
<bpmndi:BPMNDiagram id="BPMNDiagram_activitiAdhoc">
|
||||
<bpmndi:BPMNPlane bpmnElement="activitiAdhoc" id="BPMNPlane_activitiAdhoc">
|
||||
<bpmndi:BPMNShape bpmnElement="start"
|
||||
id="BPMNShape_start">
|
||||
<omgdc:Bounds height="35" width="35" x="30" y="200"></omgdc:Bounds>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape bpmnElement="adhocTask"
|
||||
id="BPMNShape_adhocTask">
|
||||
<omgdc:Bounds height="55" width="105" x="130"
|
||||
y="190"></omgdc:Bounds>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape bpmnElement="verifyTaskDone"
|
||||
id="BPMNShape_verifyTaskDone">
|
||||
<omgdc:Bounds height="55" width="105" x="290"
|
||||
y="190"></omgdc:Bounds>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape bpmnElement="theEnd"
|
||||
id="BPMNShape_theEnd">
|
||||
<omgdc:Bounds height="35" width="35" x="455" y="200"></omgdc:Bounds>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNEdge bpmnElement="flow1" id="BPMNEdge_flow1">
|
||||
<omgdi:waypoint x="65" y="217"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="130" y="217"></omgdi:waypoint>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge bpmnElement="flow2" id="BPMNEdge_flow2">
|
||||
<omgdi:waypoint x="235" y="217"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="290" y="217"></omgdi:waypoint>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge bpmnElement="flow3" id="BPMNEdge_flow3">
|
||||
<omgdi:waypoint x="395" y="217"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="455" y="217"></omgdi:waypoint>
|
||||
</bpmndi:BPMNEdge>
|
||||
</bpmndi:BPMNPlane>
|
||||
</bpmndi:BPMNDiagram>
|
||||
|
||||
</definitions>
|
@@ -1,12 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
|
||||
<definitions id="review-definitions"
|
||||
typeLanguage="http://www.w3.org/2001/XMLSchema"
|
||||
expressionLanguage="http://www.w3.org/1999/XPath"
|
||||
targetNamespace="http://activiti.org/bpmn20"
|
||||
xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:activiti="http://activiti.org/bpmn">
|
||||
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:activiti="http://activiti.org/bpmn"
|
||||
xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:omgdc="http://www.omg.org/spec/DD/20100524/DC"
|
||||
xmlns:omgdi="http://www.omg.org/spec/DD/20100524/DI" typeLanguage="http://www.w3.org/2001/XMLSchema"
|
||||
expressionLanguage="http://www.w3.org/1999/XPath" targetNamespace="http://alfresco.org">
|
||||
|
||||
<process id="activitiParallelGroupReview" name="Parallel Group Review And Approve Activiti Process">
|
||||
|
||||
@@ -169,4 +167,63 @@
|
||||
|
||||
</process>
|
||||
|
||||
<!-- Graphical representaion of diagram -->
|
||||
<bpmndi:BPMNDiagram id="BPMNDiagram_activitiParallelGroupReview">
|
||||
<bpmndi:BPMNPlane bpmnElement="activitiParallelGroupReview"
|
||||
id="BPMNPlane_activitiParallelGroupReview">
|
||||
<bpmndi:BPMNShape bpmnElement="start"
|
||||
id="BPMNShape_start">
|
||||
<omgdc:Bounds height="35" width="35" x="30" y="200"></omgdc:Bounds>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape bpmnElement="reviewTask"
|
||||
id="BPMNShape_reviewTask">
|
||||
<omgdc:Bounds height="55" width="105" x="125"
|
||||
y="190"></omgdc:Bounds>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape bpmnElement="reviewDecision"
|
||||
id="BPMNShape_reviewDecision">
|
||||
<omgdc:Bounds height="40" width="40" x="290" y="197"></omgdc:Bounds>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape bpmnElement="approved"
|
||||
id="BPMNShape_approved">
|
||||
<omgdc:Bounds height="55" width="105" x="390"
|
||||
y="97"></omgdc:Bounds>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape bpmnElement="rejected"
|
||||
id="BPMNShape_rejected">
|
||||
<omgdc:Bounds height="55" width="105" x="390"
|
||||
y="297"></omgdc:Bounds>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape bpmnElement="end" id="BPMNShape_end">
|
||||
<omgdc:Bounds height="35" width="35" x="555" y="307"></omgdc:Bounds>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNEdge bpmnElement="flow1" id="BPMNEdge_flow1">
|
||||
<omgdi:waypoint x="65" y="217"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="125" y="217"></omgdi:waypoint>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge bpmnElement="flow2" id="BPMNEdge_flow2">
|
||||
<omgdi:waypoint x="230" y="217"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="290" y="217"></omgdi:waypoint>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge bpmnElement="flow3" id="BPMNEdge_flow3">
|
||||
<omgdi:waypoint x="310" y="197"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="310" y="124"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="390" y="124"></omgdi:waypoint>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge bpmnElement="flow4" id="BPMNEdge_flow4">
|
||||
<omgdi:waypoint x="310" y="237"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="310" y="324"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="390" y="324"></omgdi:waypoint>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge bpmnElement="flow5" id="BPMNEdge_flow5">
|
||||
<omgdi:waypoint x="495" y="124"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="572" y="124"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="572" y="307"></omgdi:waypoint>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge bpmnElement="flow6" id="BPMNEdge_flow6">
|
||||
<omgdi:waypoint x="495" y="324"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="555" y="324"></omgdi:waypoint>
|
||||
</bpmndi:BPMNEdge>
|
||||
</bpmndi:BPMNPlane>
|
||||
</bpmndi:BPMNDiagram>
|
||||
</definitions>
|
@@ -1,12 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
|
||||
<definitions id="review-definitions"
|
||||
typeLanguage="http://www.w3.org/2001/XMLSchema"
|
||||
expressionLanguage="http://www.w3.org/1999/XPath"
|
||||
targetNamespace="http://activiti.org/bpmn20"
|
||||
xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:activiti="http://activiti.org/bpmn">
|
||||
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:activiti="http://activiti.org/bpmn"
|
||||
xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:omgdc="http://www.omg.org/spec/DD/20100524/DC"
|
||||
xmlns:omgdi="http://www.omg.org/spec/DD/20100524/DI" typeLanguage="http://www.w3.org/2001/XMLSchema"
|
||||
expressionLanguage="http://www.w3.org/1999/XPath" targetNamespace="http://alfresco.org">
|
||||
|
||||
<process id="activitiParallelReview" name="Parallel Review And Approve Activiti Process">
|
||||
|
||||
@@ -150,5 +148,65 @@
|
||||
<endEvent id="end" />
|
||||
|
||||
</process>
|
||||
|
||||
<!-- Graphical representaion of diagram -->
|
||||
<bpmndi:BPMNDiagram id="BPMNDiagram_activitiParallelReview">
|
||||
<bpmndi:BPMNPlane bpmnElement="activitiParallelReview"
|
||||
id="BPMNPlane_activitiParallelReview">
|
||||
<bpmndi:BPMNShape bpmnElement="start"
|
||||
id="BPMNShape_start">
|
||||
<omgdc:Bounds height="35" width="35" x="30" y="200"></omgdc:Bounds>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape bpmnElement="reviewTask"
|
||||
id="BPMNShape_reviewTask">
|
||||
<omgdc:Bounds height="55" width="105" x="125"
|
||||
y="190"></omgdc:Bounds>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape bpmnElement="reviewDecision"
|
||||
id="BPMNShape_reviewDecision">
|
||||
<omgdc:Bounds height="40" width="40" x="290" y="197"></omgdc:Bounds>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape bpmnElement="approved"
|
||||
id="BPMNShape_approved">
|
||||
<omgdc:Bounds height="55" width="105" x="390"
|
||||
y="97"></omgdc:Bounds>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape bpmnElement="rejected"
|
||||
id="BPMNShape_rejected">
|
||||
<omgdc:Bounds height="55" width="105" x="390"
|
||||
y="297"></omgdc:Bounds>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape bpmnElement="end" id="BPMNShape_end">
|
||||
<omgdc:Bounds height="35" width="35" x="555" y="307"></omgdc:Bounds>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNEdge bpmnElement="flow1" id="BPMNEdge_flow1">
|
||||
<omgdi:waypoint x="65" y="217"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="125" y="217"></omgdi:waypoint>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge bpmnElement="flow2" id="BPMNEdge_flow2">
|
||||
<omgdi:waypoint x="230" y="217"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="290" y="217"></omgdi:waypoint>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge bpmnElement="flow3" id="BPMNEdge_flow3">
|
||||
<omgdi:waypoint x="310" y="197"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="310" y="124"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="390" y="124"></omgdi:waypoint>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge bpmnElement="flow4" id="BPMNEdge_flow4">
|
||||
<omgdi:waypoint x="310" y="237"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="310" y="324"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="390" y="324"></omgdi:waypoint>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge bpmnElement="flow5" id="BPMNEdge_flow5">
|
||||
<omgdi:waypoint x="495" y="124"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="572" y="124"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="572" y="307"></omgdi:waypoint>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge bpmnElement="flow6" id="BPMNEdge_flow6">
|
||||
<omgdi:waypoint x="495" y="324"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="555" y="324"></omgdi:waypoint>
|
||||
</bpmndi:BPMNEdge>
|
||||
</bpmndi:BPMNPlane>
|
||||
</bpmndi:BPMNDiagram>
|
||||
|
||||
</definitions>
|
@@ -1,12 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
|
||||
<definitions id="review-definitions"
|
||||
typeLanguage="http://www.w3.org/2001/XMLSchema"
|
||||
expressionLanguage="http://www.w3.org/1999/XPath"
|
||||
targetNamespace="http://activiti.org/bpmn20"
|
||||
xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:activiti="http://activiti.org/bpmn">
|
||||
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:activiti="http://activiti.org/bpmn"
|
||||
xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:omgdc="http://www.omg.org/spec/DD/20100524/DC"
|
||||
xmlns:omgdi="http://www.omg.org/spec/DD/20100524/DI" typeLanguage="http://www.w3.org/2001/XMLSchema"
|
||||
expressionLanguage="http://www.w3.org/1999/XPath" targetNamespace="http://alfresco.org">
|
||||
|
||||
<process id="activitiReviewPooled" name="Pooled Review And Approve Activiti Process">
|
||||
|
||||
@@ -125,5 +123,65 @@
|
||||
<endEvent id="end" />
|
||||
|
||||
</process>
|
||||
|
||||
<!-- Graphical representaion of diagram -->
|
||||
<bpmndi:BPMNDiagram id="BPMNDiagram_activitiReviewPooled">
|
||||
<bpmndi:BPMNPlane bpmnElement="activitiReviewPooled"
|
||||
id="BPMNPlane_activitiReviewPooled">
|
||||
<bpmndi:BPMNShape bpmnElement="start"
|
||||
id="BPMNShape_start">
|
||||
<omgdc:Bounds height="35" width="35" x="30" y="200"></omgdc:Bounds>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape bpmnElement="reviewTask"
|
||||
id="BPMNShape_reviewTask">
|
||||
<omgdc:Bounds height="55" width="105" x="125"
|
||||
y="190"></omgdc:Bounds>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape bpmnElement="reviewDecision"
|
||||
id="BPMNShape_reviewDecision">
|
||||
<omgdc:Bounds height="40" width="40" x="290" y="197"></omgdc:Bounds>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape bpmnElement="approved"
|
||||
id="BPMNShape_approved">
|
||||
<omgdc:Bounds height="55" width="105" x="390"
|
||||
y="97"></omgdc:Bounds>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape bpmnElement="rejected"
|
||||
id="BPMNShape_rejected">
|
||||
<omgdc:Bounds height="55" width="105" x="390"
|
||||
y="297"></omgdc:Bounds>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape bpmnElement="end" id="BPMNShape_end">
|
||||
<omgdc:Bounds height="35" width="35" x="555" y="307"></omgdc:Bounds>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNEdge bpmnElement="flow1" id="BPMNEdge_flow1">
|
||||
<omgdi:waypoint x="65" y="217"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="125" y="217"></omgdi:waypoint>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge bpmnElement="flow2" id="BPMNEdge_flow2">
|
||||
<omgdi:waypoint x="230" y="217"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="290" y="217"></omgdi:waypoint>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge bpmnElement="flow3" id="BPMNEdge_flow3">
|
||||
<omgdi:waypoint x="310" y="197"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="310" y="124"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="390" y="124"></omgdi:waypoint>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge bpmnElement="flow4" id="BPMNEdge_flow4">
|
||||
<omgdi:waypoint x="310" y="237"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="310" y="324"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="390" y="324"></omgdi:waypoint>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge bpmnElement="flow5" id="BPMNEdge_flow5">
|
||||
<omgdi:waypoint x="495" y="124"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="572" y="124"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="572" y="307"></omgdi:waypoint>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge bpmnElement="flow6" id="BPMNEdge_flow6">
|
||||
<omgdi:waypoint x="495" y="324"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="555" y="324"></omgdi:waypoint>
|
||||
</bpmndi:BPMNEdge>
|
||||
</bpmndi:BPMNPlane>
|
||||
</bpmndi:BPMNDiagram>
|
||||
|
||||
</definitions>
|
@@ -1,12 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
|
||||
<definitions id="review-definitions"
|
||||
typeLanguage="http://www.w3.org/2001/XMLSchema"
|
||||
expressionLanguage="http://www.w3.org/1999/XPath"
|
||||
targetNamespace="http://activiti.org/bpmn20"
|
||||
xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:activiti="http://activiti.org/bpmn">
|
||||
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:activiti="http://activiti.org/bpmn"
|
||||
xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:omgdc="http://www.omg.org/spec/DD/20100524/DC"
|
||||
xmlns:omgdi="http://www.omg.org/spec/DD/20100524/DI" typeLanguage="http://www.w3.org/2001/XMLSchema"
|
||||
expressionLanguage="http://www.w3.org/1999/XPath" targetNamespace="http://alfresco.org">
|
||||
|
||||
<process id="activitiReview" name="Review And Approve Activiti Process">
|
||||
|
||||
@@ -110,5 +108,65 @@
|
||||
<endEvent id="end" />
|
||||
|
||||
</process>
|
||||
|
||||
<!-- Graphical representaion of diagram -->
|
||||
<bpmndi:BPMNDiagram id="BPMNDiagram_activitiReview">
|
||||
<bpmndi:BPMNPlane bpmnElement="activitiReview"
|
||||
id="BPMNPlane_activitiReview">
|
||||
<bpmndi:BPMNShape bpmnElement="start"
|
||||
id="BPMNShape_start">
|
||||
<omgdc:Bounds height="35" width="35" x="30" y="200"></omgdc:Bounds>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape bpmnElement="reviewTask"
|
||||
id="BPMNShape_reviewTask">
|
||||
<omgdc:Bounds height="55" width="105" x="125"
|
||||
y="190"></omgdc:Bounds>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape bpmnElement="reviewDecision"
|
||||
id="BPMNShape_reviewDecision">
|
||||
<omgdc:Bounds height="40" width="40" x="290" y="197"></omgdc:Bounds>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape bpmnElement="approved"
|
||||
id="BPMNShape_approved">
|
||||
<omgdc:Bounds height="55" width="105" x="390"
|
||||
y="97"></omgdc:Bounds>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape bpmnElement="rejected"
|
||||
id="BPMNShape_rejected">
|
||||
<omgdc:Bounds height="55" width="105" x="390"
|
||||
y="297"></omgdc:Bounds>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape bpmnElement="end" id="BPMNShape_end">
|
||||
<omgdc:Bounds height="35" width="35" x="555" y="307"></omgdc:Bounds>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNEdge bpmnElement="flow1" id="BPMNEdge_flow1">
|
||||
<omgdi:waypoint x="65" y="217"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="125" y="217"></omgdi:waypoint>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge bpmnElement="flow2" id="BPMNEdge_flow2">
|
||||
<omgdi:waypoint x="230" y="217"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="290" y="217"></omgdi:waypoint>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge bpmnElement="flow3" id="BPMNEdge_flow3">
|
||||
<omgdi:waypoint x="310" y="197"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="310" y="124"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="390" y="124"></omgdi:waypoint>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge bpmnElement="flow4" id="BPMNEdge_flow4">
|
||||
<omgdi:waypoint x="310" y="237"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="310" y="324"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="390" y="324"></omgdi:waypoint>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge bpmnElement="flow5" id="BPMNEdge_flow5">
|
||||
<omgdi:waypoint x="495" y="124"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="572" y="124"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="572" y="307"></omgdi:waypoint>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge bpmnElement="flow6" id="BPMNEdge_flow6">
|
||||
<omgdi:waypoint x="495" y="324"></omgdi:waypoint>
|
||||
<omgdi:waypoint x="555" y="324"></omgdi:waypoint>
|
||||
</bpmndi:BPMNEdge>
|
||||
</bpmndi:BPMNPlane>
|
||||
</bpmndi:BPMNDiagram>
|
||||
|
||||
</definitions>
|
Reference in New Issue
Block a user