blob: 2e9d860ac971b0d5ea5490580b3eff198a15c260 [file] [log] [blame]
xg353yb6b7bef2017-04-11 13:30:42 +02001<?xml version="1.0" encoding="UTF-8"?>
2<bpmn2:definitions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bpmn2="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="_9MhrcHqVEea26OhQB97uCQ" targetNamespace="http://camunda.org/schema/1.0/bpmn" exporter="Camunda Modeler" exporterVersion="1.6.0" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL BPMN20.xsd">
3 <bpmn2:process id="DoDeleteVnf" name="DoDeleteVnf" isExecutable="true">
4 <bpmn2:startEvent id="StartEvent_1">
5 <bpmn2:outgoing>SequenceFlow_1</bpmn2:outgoing>
6 </bpmn2:startEvent>
7 <bpmn2:sequenceFlow id="SequenceFlow_1" name="" sourceRef="StartEvent_1" targetRef="intialization" />
8 <bpmn2:scriptTask id="intialization" name="Intialization" scriptFormat="groovy">
9 <bpmn2:incoming>SequenceFlow_1</bpmn2:incoming>
10 <bpmn2:outgoing>SequenceFlow_2</bpmn2:outgoing>
11 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
12DoDeleteVnf deleteVnf = new DoDeleteVnf()
13deleteVnf.preProcessRequest(execution)]]></bpmn2:script>
14 </bpmn2:scriptTask>
15 <bpmn2:sequenceFlow id="SequenceFlow_2" name="" sourceRef="intialization" targetRef="callGetVnf" />
16 <bpmn2:callActivity id="callGetVnf" name="Get&#10;&#10;Generic Vnf" calledElement="GenericGetVnf">
17 <bpmn2:extensionElements>
18 <camunda:out source="GENGV_vnf" target="DoDVNF_genericVnf" />
19 <camunda:out source="WorkflowException" target="WorkflowException" />
20 <camunda:out source="GENGV_SuccessIndicator" target="GENGV_SuccessIndicator" />
21 <camunda:out source="GENGV_FoundIndicator" target="GENGV_FoundIndicator" />
22 <camunda:in source="DoDVNF_type" target="GENGV_type" />
23 <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" />
24 <camunda:in source="DoDVNF_vnfId" target="GENGV_vnfId" />
25 </bpmn2:extensionElements>
26 <bpmn2:incoming>SequenceFlow_2</bpmn2:incoming>
27 <bpmn2:outgoing>SequenceFlow_5</bpmn2:outgoing>
28 </bpmn2:callActivity>
29 <bpmn2:sequenceFlow id="SequenceFlow_5" name="" sourceRef="callGetVnf" targetRef="vnfFoundCheck" />
30 <bpmn2:exclusiveGateway id="vnfFoundCheck" name="Vnf Found?" default="notFound">
31 <bpmn2:incoming>SequenceFlow_5</bpmn2:incoming>
32 <bpmn2:outgoing>vnfFound</bpmn2:outgoing>
33 <bpmn2:outgoing>notFound</bpmn2:outgoing>
34 </bpmn2:exclusiveGateway>
35 <bpmn2:sequenceFlow id="vnfFound" name="Yes" sourceRef="vnfFoundCheck" targetRef="processResponse">
36 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("GENGV_FoundIndicator") == true && execution.getVariable("GENGV_SuccessIndicator") == true}]]></bpmn2:conditionExpression>
37 </bpmn2:sequenceFlow>
38 <bpmn2:sequenceFlow id="notFound" name="No" sourceRef="vnfFoundCheck" targetRef="IntermediateThrowEvent_1" />
39 <bpmn2:scriptTask id="processResponse" name="Process Response" scriptFormat="groovy">
40 <bpmn2:incoming>vnfFound</bpmn2:incoming>
41 <bpmn2:outgoing>SequenceFlow_4</bpmn2:outgoing>
42 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
43DoDeleteVnf deleteVnf = new DoDeleteVnf()
44deleteVnf.processGetVnfResponse(execution)]]></bpmn2:script>
45 </bpmn2:scriptTask>
46 <bpmn2:sequenceFlow id="SequenceFlow_4" name="" sourceRef="processResponse" targetRef="vnfInUseCheck" />
47 <bpmn2:intermediateThrowEvent id="IntermediateThrowEvent_1" name="Skip Delete">
48 <bpmn2:incoming>notFound</bpmn2:incoming>
49 <bpmn2:linkEventDefinition id="LinkEventDefinition_1" name="Skip Delete" />
50 </bpmn2:intermediateThrowEvent>
51 <bpmn2:exclusiveGateway id="vnfInUseCheck" name="Vnf In Use?" default="notInUse">
52 <bpmn2:incoming>SequenceFlow_4</bpmn2:incoming>
53 <bpmn2:outgoing>inUse</bpmn2:outgoing>
54 <bpmn2:outgoing>notInUse</bpmn2:outgoing>
55 </bpmn2:exclusiveGateway>
56 <bpmn2:sequenceFlow id="inUse" name="Yes" sourceRef="vnfInUseCheck" targetRef="createWorkflowExceptionInUse">
57 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("DoDVNF_vnfInUse") == true}]]></bpmn2:conditionExpression>
58 </bpmn2:sequenceFlow>
59 <bpmn2:sequenceFlow id="notInUse" name="No" sourceRef="vnfInUseCheck" targetRef="callDeleteVnf" />
60 <bpmn2:scriptTask id="createWorkflowExceptionInUse" name="Create Workflow Exception" scriptFormat="groovy">
61 <bpmn2:incoming>inUse</bpmn2:incoming>
62 <bpmn2:outgoing>SequenceFlow_8</bpmn2:outgoing>
63 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.common.scripts.*
64ExceptionUtil exceptionUtil = new ExceptionUtil()
65exceptionUtil.buildAndThrowWorkflowException(execution, 5000, "Can't Delete Generic Vnf. Generic Vnf is still in use.")]]></bpmn2:script>
66 </bpmn2:scriptTask>
67 <bpmn2:sequenceFlow id="SequenceFlow_8" name="" sourceRef="createWorkflowExceptionInUse" targetRef="EndEvent_1" />
68 <bpmn2:callActivity id="callDeleteVnf" name="Delete&#10;&#10;Generic Vnf" calledElement="GenericDeleteVnf">
69 <bpmn2:extensionElements>
70 <camunda:in source="DoDVNF_vnfId" target="GENDV_vnfId" />
71 <camunda:in source="DoDVNF_type" target="GENDV_type" />
72 <camunda:out source="GENDV_SuccessIndicator" target="GENDV_SuccessIndicator" />
73 <camunda:out source="WorkflowException" target="WorkflowException" />
74 <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" />
75 <camunda:in source="DoDVNF_resourceVersion" target="GENDV_resourceVersion" />
76 </bpmn2:extensionElements>
77 <bpmn2:incoming>notInUse</bpmn2:incoming>
78 <bpmn2:outgoing>SequenceFlow_9</bpmn2:outgoing>
79 </bpmn2:callActivity>
80 <bpmn2:endEvent id="EndEvent_1">
81 <bpmn2:incoming>SequenceFlow_8</bpmn2:incoming>
82 <bpmn2:errorEventDefinition id="_ErrorEventDefinition_93" errorRef="Error_1" />
83 </bpmn2:endEvent>
84 <bpmn2:sequenceFlow id="SequenceFlow_9" name="" sourceRef="callDeleteVnf" targetRef="ExclusiveGateway_2" />
85 <bpmn2:subProcess id="javaErrorHandlingSubProcess" name="Java Exception Handling Sub Process" triggeredByEvent="true">
86 <bpmn2:endEvent id="EndEvent_4">
87 <bpmn2:incoming>SequenceFlow_19</bpmn2:incoming>
88 </bpmn2:endEvent>
89 <bpmn2:startEvent id="StartEvent_3">
90 <bpmn2:outgoing>SequenceFlow_18</bpmn2:outgoing>
91 <bpmn2:errorEventDefinition id="_ErrorEventDefinition_95" errorRef="Error_2" />
92 </bpmn2:startEvent>
93 <bpmn2:sequenceFlow id="SequenceFlow_18" name="" sourceRef="StartEvent_3" targetRef="processJavaException" />
94 <bpmn2:scriptTask id="processJavaException" name="Process Error" scriptFormat="groovy">
95 <bpmn2:incoming>SequenceFlow_18</bpmn2:incoming>
96 <bpmn2:outgoing>SequenceFlow_19</bpmn2:outgoing>
97 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.common.scripts.*
98ExceptionUtil exceptionUtil = new ExceptionUtil()
99exceptionUtil.processJavaException(execution)]]></bpmn2:script>
100 </bpmn2:scriptTask>
101 <bpmn2:sequenceFlow id="SequenceFlow_19" name="" sourceRef="processJavaException" targetRef="EndEvent_4" />
102 </bpmn2:subProcess>
103 <bpmn2:exclusiveGateway id="ExclusiveGateway_2">
104 <bpmn2:incoming>SequenceFlow_9</bpmn2:incoming>
105 <bpmn2:incoming>SequenceFlow_12</bpmn2:incoming>
106 <bpmn2:outgoing>SequenceFlow_10</bpmn2:outgoing>
107 </bpmn2:exclusiveGateway>
108 <bpmn2:sequenceFlow id="SequenceFlow_10" name="" sourceRef="ExclusiveGateway_2" targetRef="EndEvent_2" />
109 <bpmn2:intermediateCatchEvent id="IntermediateCatchEvent_1" name="Skip Delete">
110 <bpmn2:outgoing>SequenceFlow_12</bpmn2:outgoing>
111 <bpmn2:linkEventDefinition id="LinkEventDefinition_2" name="Skip Delete" />
112 </bpmn2:intermediateCatchEvent>
113 <bpmn2:sequenceFlow id="SequenceFlow_12" name="" sourceRef="IntermediateCatchEvent_1" targetRef="ExclusiveGateway_2" />
114 <bpmn2:endEvent id="EndEvent_2">
115 <bpmn2:incoming>SequenceFlow_10</bpmn2:incoming>
116 <bpmn2:terminateEventDefinition id="_TerminateEventDefinition_36" />
117 </bpmn2:endEvent>
118 </bpmn2:process>
119 <bpmn2:error id="Error_1" name="MSO Workflow Exception" errorCode="MSOWorkflowException" />
120 <bpmn2:error id="Error_2" name="Java Lang Exception" errorCode="java.lang.Exception" />
121 <bpmndi:BPMNDiagram id="BPMNDiagram_1">
122 <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="DoDeleteVnf">
123 <bpmndi:BPMNShape id="_BPMNShape_StartEvent_79" bpmnElement="StartEvent_1">
124 <dc:Bounds x="215" y="209" width="36" height="36" />
125 <bpmndi:BPMNLabel>
126 <dc:Bounds x="233" y="250" width="0" height="0" />
127 </bpmndi:BPMNLabel>
128 </bpmndi:BPMNShape>
129 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_311" bpmnElement="intialization">
130 <dc:Bounds x="322" y="188" width="100" height="80" />
131 </bpmndi:BPMNShape>
132 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_1" bpmnElement="SequenceFlow_1" sourceElement="_BPMNShape_StartEvent_79" targetElement="_BPMNShape_ScriptTask_311">
133 <di:waypoint xsi:type="dc:Point" x="251" y="227" />
134 <di:waypoint xsi:type="dc:Point" x="322" y="228" />
135 <bpmndi:BPMNLabel>
136 <dc:Bounds x="287" y="212.5" width="0" height="0" />
137 </bpmndi:BPMNLabel>
138 </bpmndi:BPMNEdge>
139 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_2" bpmnElement="SequenceFlow_2" sourceElement="_BPMNShape_ScriptTask_311">
140 <di:waypoint xsi:type="dc:Point" x="422" y="228" />
141 <di:waypoint xsi:type="dc:Point" x="504" y="228" />
142 <bpmndi:BPMNLabel>
143 <dc:Bounds x="463" y="213" width="0" height="0" />
144 </bpmndi:BPMNLabel>
145 </bpmndi:BPMNEdge>
146 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_314" bpmnElement="processResponse">
147 <dc:Bounds x="704" y="291" width="100" height="80" />
148 </bpmndi:BPMNShape>
149 <bpmndi:BPMNShape id="_BPMNShape_CallActivity_63" bpmnElement="callGetVnf">
150 <dc:Bounds x="504" y="188" width="100" height="80" />
151 </bpmndi:BPMNShape>
152 <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_236" bpmnElement="vnfInUseCheck" isMarkerVisible="true">
153 <dc:Bounds x="840" y="305" width="50" height="50" />
154 <bpmndi:BPMNLabel>
155 <dc:Bounds x="890" y="335" width="73" height="22" />
156 </bpmndi:BPMNLabel>
157 </bpmndi:BPMNShape>
158 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_4" bpmnElement="SequenceFlow_4" sourceElement="_BPMNShape_ScriptTask_314" targetElement="_BPMNShape_ExclusiveGateway_236">
159 <di:waypoint xsi:type="dc:Point" x="804" y="331" />
160 <di:waypoint xsi:type="dc:Point" x="840" y="330" />
161 <bpmndi:BPMNLabel>
162 <dc:Bounds x="799" y="325" width="6" height="6" />
163 </bpmndi:BPMNLabel>
164 </bpmndi:BPMNEdge>
165 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_5" bpmnElement="SequenceFlow_5" sourceElement="_BPMNShape_CallActivity_63" targetElement="_BPMNShape_ExclusiveGateway_237">
166 <di:waypoint xsi:type="dc:Point" x="604" y="228" />
167 <di:waypoint xsi:type="dc:Point" x="634" y="227" />
168 <bpmndi:BPMNLabel>
169 <dc:Bounds x="630" y="227" width="6" height="6" />
170 </bpmndi:BPMNLabel>
171 </bpmndi:BPMNEdge>
172 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_315" bpmnElement="createWorkflowExceptionInUse">
173 <dc:Bounds x="912" y="196" width="100" height="80" />
174 </bpmndi:BPMNShape>
175 <bpmndi:BPMNShape id="_BPMNShape_CallActivity_64" bpmnElement="callDeleteVnf">
176 <dc:Bounds x="912" y="384" width="100" height="80" />
177 </bpmndi:BPMNShape>
178 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_6" bpmnElement="inUse" sourceElement="_BPMNShape_ExclusiveGateway_236" targetElement="_BPMNShape_ScriptTask_315">
179 <di:waypoint xsi:type="dc:Point" x="865" y="305" />
180 <di:waypoint xsi:type="dc:Point" x="865" y="236" />
181 <di:waypoint xsi:type="dc:Point" x="912" y="236" />
182 <bpmndi:BPMNLabel>
183 <dc:Bounds x="867" y="258" width="29" height="22" />
184 </bpmndi:BPMNLabel>
185 </bpmndi:BPMNEdge>
186 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_7" bpmnElement="notInUse" sourceElement="_BPMNShape_ExclusiveGateway_236" targetElement="_BPMNShape_CallActivity_64">
187 <di:waypoint xsi:type="dc:Point" x="865" y="355" />
188 <di:waypoint xsi:type="dc:Point" x="865" y="424" />
189 <di:waypoint xsi:type="dc:Point" x="912" y="424" />
190 <bpmndi:BPMNLabel>
191 <dc:Bounds x="870" y="384" width="22" height="22" />
192 </bpmndi:BPMNLabel>
193 </bpmndi:BPMNEdge>
194 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_236" bpmnElement="EndEvent_1">
195 <dc:Bounds x="1100" y="218" width="36" height="36" />
196 <bpmndi:BPMNLabel>
197 <dc:Bounds x="1118" y="259" width="0" height="0" />
198 </bpmndi:BPMNLabel>
199 </bpmndi:BPMNShape>
200 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_8" bpmnElement="SequenceFlow_8" sourceElement="_BPMNShape_ScriptTask_315" targetElement="_BPMNShape_EndEvent_236">
201 <di:waypoint xsi:type="dc:Point" x="1012" y="236" />
202 <di:waypoint xsi:type="dc:Point" x="1100" y="236" />
203 <bpmndi:BPMNLabel>
204 <dc:Bounds x="1062" y="236" width="6" height="6" />
205 </bpmndi:BPMNLabel>
206 </bpmndi:BPMNEdge>
207 <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_237" bpmnElement="vnfFoundCheck" isMarkerVisible="true">
208 <dc:Bounds x="634" y="202" width="50" height="50" />
209 <bpmndi:BPMNLabel>
210 <dc:Bounds x="672" y="240" width="72" height="22" />
211 </bpmndi:BPMNLabel>
212 </bpmndi:BPMNShape>
213 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_9" bpmnElement="vnfFound" sourceElement="_BPMNShape_ExclusiveGateway_237" targetElement="_BPMNShape_ScriptTask_314">
214 <di:waypoint xsi:type="dc:Point" x="659" y="252" />
215 <di:waypoint xsi:type="dc:Point" x="659" y="331" />
216 <di:waypoint xsi:type="dc:Point" x="704" y="331" />
217 <bpmndi:BPMNLabel>
218 <dc:Bounds x="659" y="288" width="29" height="22" />
219 </bpmndi:BPMNLabel>
220 </bpmndi:BPMNEdge>
221 <bpmndi:BPMNShape id="_BPMNShape_IntermediateThrowEvent_2" bpmnElement="IntermediateThrowEvent_1">
222 <dc:Bounds x="740" y="102" width="36" height="36" />
223 <bpmndi:BPMNLabel>
224 <dc:Bounds x="722" y="143" width="73" height="22" />
225 </bpmndi:BPMNLabel>
226 </bpmndi:BPMNShape>
227 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_10" bpmnElement="notFound" sourceElement="_BPMNShape_ExclusiveGateway_237" targetElement="_BPMNShape_IntermediateThrowEvent_2">
228 <di:waypoint xsi:type="dc:Point" x="659" y="202" />
229 <di:waypoint xsi:type="dc:Point" x="659" y="120" />
230 <di:waypoint xsi:type="dc:Point" x="740" y="120" />
231 <bpmndi:BPMNLabel>
232 <dc:Bounds x="662" y="144" width="22" height="22" />
233 </bpmndi:BPMNLabel>
234 </bpmndi:BPMNEdge>
235 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_237" bpmnElement="EndEvent_2">
236 <dc:Bounds x="1174" y="405" width="36" height="36" />
237 <bpmndi:BPMNLabel>
238 <dc:Bounds x="1192" y="446" width="0" height="0" />
239 </bpmndi:BPMNLabel>
240 </bpmndi:BPMNShape>
241 <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_238" bpmnElement="ExclusiveGateway_2" isMarkerVisible="true">
242 <dc:Bounds x="1062" y="398" width="50" height="50" />
243 <bpmndi:BPMNLabel>
244 <dc:Bounds x="1087" y="453" width="0" height="0" />
245 </bpmndi:BPMNLabel>
246 </bpmndi:BPMNShape>
247 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_11" bpmnElement="SequenceFlow_9" sourceElement="_BPMNShape_CallActivity_64" targetElement="_BPMNShape_ExclusiveGateway_238">
248 <di:waypoint xsi:type="dc:Point" x="1012" y="424" />
249 <di:waypoint xsi:type="dc:Point" x="1062" y="423" />
250 <bpmndi:BPMNLabel>
251 <dc:Bounds x="1036" y="423" width="6" height="6" />
252 </bpmndi:BPMNLabel>
253 </bpmndi:BPMNEdge>
254 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_12" bpmnElement="SequenceFlow_10" sourceElement="_BPMNShape_ExclusiveGateway_238">
255 <di:waypoint xsi:type="dc:Point" x="1111" y="422" />
256 <di:waypoint xsi:type="dc:Point" x="1174" y="423" />
257 <bpmndi:BPMNLabel>
258 <dc:Bounds x="1143" y="407.5" width="0" height="0" />
259 </bpmndi:BPMNLabel>
260 </bpmndi:BPMNEdge>
261 <bpmndi:BPMNShape id="_BPMNShape_IntermediateCatchEvent_2" bpmnElement="IntermediateCatchEvent_1">
262 <dc:Bounds x="1069" y="492" width="36" height="36" />
263 <bpmndi:BPMNLabel>
264 <dc:Bounds x="1051" y="533" width="73" height="22" />
265 </bpmndi:BPMNLabel>
266 </bpmndi:BPMNShape>
267 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_14" bpmnElement="SequenceFlow_12" sourceElement="_BPMNShape_IntermediateCatchEvent_2" targetElement="_BPMNShape_ExclusiveGateway_238">
268 <di:waypoint xsi:type="dc:Point" x="1087" y="492" />
269 <di:waypoint xsi:type="dc:Point" x="1087" y="448" />
270 <bpmndi:BPMNLabel>
271 <dc:Bounds x="1084" y="462" width="6" height="6" />
272 </bpmndi:BPMNLabel>
273 </bpmndi:BPMNEdge>
274 <bpmndi:BPMNShape id="_BPMNShape_SubProcess_35" bpmnElement="javaErrorHandlingSubProcess" isExpanded="true">
275 <dc:Bounds x="379" y="614" width="312" height="157" />
276 </bpmndi:BPMNShape>
277 <bpmndi:BPMNShape id="_BPMNShape_StartEvent_81" bpmnElement="StartEvent_3">
278 <dc:Bounds x="408" y="675" width="36" height="36" />
279 <bpmndi:BPMNLabel>
280 <dc:Bounds x="426" y="716" width="0" height="0" />
281 </bpmndi:BPMNLabel>
282 </bpmndi:BPMNShape>
283 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_239" bpmnElement="EndEvent_4">
284 <dc:Bounds x="624" y="675" width="36" height="36" />
285 <bpmndi:BPMNLabel>
286 <dc:Bounds x="642" y="716" width="0" height="0" />
287 </bpmndi:BPMNLabel>
288 </bpmndi:BPMNShape>
289 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_319" bpmnElement="processJavaException">
290 <dc:Bounds x="486" y="653" width="100" height="80" />
291 </bpmndi:BPMNShape>
292 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_20" bpmnElement="SequenceFlow_18" sourceElement="_BPMNShape_StartEvent_81" targetElement="_BPMNShape_ScriptTask_319">
293 <di:waypoint xsi:type="dc:Point" x="444" y="693" />
294 <di:waypoint xsi:type="dc:Point" x="486" y="693" />
295 <bpmndi:BPMNLabel>
296 <dc:Bounds x="465" y="693" width="0" height="0" />
297 </bpmndi:BPMNLabel>
298 </bpmndi:BPMNEdge>
299 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_21" bpmnElement="SequenceFlow_19" sourceElement="_BPMNShape_ScriptTask_319" targetElement="_BPMNShape_EndEvent_239">
300 <di:waypoint xsi:type="dc:Point" x="586" y="693" />
301 <di:waypoint xsi:type="dc:Point" x="624" y="693" />
302 <bpmndi:BPMNLabel>
303 <dc:Bounds x="605" y="693" width="0" height="0" />
304 </bpmndi:BPMNLabel>
305 </bpmndi:BPMNEdge>
306 </bpmndi:BPMNPlane>
307 </bpmndi:BPMNDiagram>
308</bpmn2:definitions>