Remove unnecessary use of Calendar.getInstance()
[so.git] / bpmn / MSOCommonBPMN / src / main / resources / subprocess / GenericDeleteService.bpmn
1 <?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" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL BPMN20.xsd" id="_wAtdAGrUEeaJwpcpVN5gXw" exporter="camunda modeler" exporterVersion="2.7.0" targetNamespace="http://camunda.org/schema/1.0/bpmn">
3   <bpmn2:process id="GenericDeleteService" name="GenericDeleteService" isExecutable="true">
4     <bpmn2:subProcess id="bpmnExceptionHandlingSubProcess" name="Error Handling Sub Process" triggeredByEvent="true">
5       <bpmn2:scriptTask id="processError" name="Process Error" scriptFormat="groovy">
6         <bpmn2:incoming>SequenceFlow_9</bpmn2:incoming>
7         <bpmn2:outgoing>SequenceFlow_10</bpmn2:outgoing>
8         <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.common.scripts.*
9
10 ExceptionUtil ex = new ExceptionUtil()
11 ex.processSubflowsBPMNException(execution)
12 ]]></bpmn2:script>
13       </bpmn2:scriptTask>
14       <bpmn2:sequenceFlow id="SequenceFlow_10" name="" sourceRef="processError" targetRef="EndEvent_3"/>
15       <bpmn2:startEvent id="StartEvent_2">
16         <bpmn2:outgoing>SequenceFlow_9</bpmn2:outgoing>
17         <bpmn2:errorEventDefinition id="ErrorEventDefinition_1"/>
18       </bpmn2:startEvent>
19       <bpmn2:sequenceFlow id="SequenceFlow_9" name="" sourceRef="StartEvent_2" targetRef="processError"/>
20       <bpmn2:endEvent id="EndEvent_3">
21         <bpmn2:incoming>SequenceFlow_10</bpmn2:incoming>
22         <bpmn2:terminateEventDefinition id="_TerminateEventDefinition_25"/>
23       </bpmn2:endEvent>
24     </bpmn2:subProcess>
25     <bpmn2:subProcess id="javaExceptionSubProcess" name="Java Exception Handling Sub Process" triggeredByEvent="true">
26       <bpmn2:endEvent id="EndEvent_2">
27         <bpmn2:incoming>SequenceFlow_12</bpmn2:incoming>
28       </bpmn2:endEvent>
29       <bpmn2:scriptTask id="processJavaError" name="Process Error">
30         <bpmn2:incoming>SequenceFlow_11</bpmn2:incoming>
31         <bpmn2:outgoing>SequenceFlow_12</bpmn2:outgoing>
32         <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.common.scripts.*
33
34 ExceptionUtil ex = new ExceptionUtil()
35 ex.processSubflowsJavaException(execution)
36 ]]></bpmn2:script>
37       </bpmn2:scriptTask>
38       <bpmn2:startEvent id="StartEvent_3">
39         <bpmn2:outgoing>SequenceFlow_11</bpmn2:outgoing>
40         <bpmn2:errorEventDefinition id="ErrorEventDefinition_2"/>
41       </bpmn2:startEvent>
42       <bpmn2:sequenceFlow id="SequenceFlow_11" name="" sourceRef="StartEvent_3" targetRef="processJavaError"/>
43       <bpmn2:sequenceFlow id="SequenceFlow_12" name="" sourceRef="processJavaError" targetRef="EndEvent_2"/>
44     </bpmn2:subProcess>
45     <bpmn2:startEvent id="StartEvent_1">
46       <bpmn2:outgoing>SequenceFlow_1</bpmn2:outgoing>
47     </bpmn2:startEvent>
48     <bpmn2:sequenceFlow id="SequenceFlow_1" name="" sourceRef="StartEvent_1" targetRef="initialization"/>
49     <bpmn2:scriptTask id="initialization" name="Initialization" scriptFormat="groovy">
50       <bpmn2:incoming>SequenceFlow_1</bpmn2:incoming>
51       <bpmn2:outgoing>SequenceFlow_3</bpmn2:outgoing>
52       <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.common.scripts.*
53 GenericDeleteService deleteService  = new GenericDeleteService()
54 deleteService.preProcessRequest(execution)
55 ]]></bpmn2:script>
56     </bpmn2:scriptTask>
57     <bpmn2:sequenceFlow id="SequenceFlow_3" name="" sourceRef="initialization" targetRef="resourceVersionCheck"/>
58     <bpmn2:exclusiveGateway id="resourceVersionCheck" name="Resource Version Provided?" default="yes">
59       <bpmn2:incoming>SequenceFlow_3</bpmn2:incoming>
60       <bpmn2:outgoing>no</bpmn2:outgoing>
61       <bpmn2:outgoing>yes</bpmn2:outgoing>
62     </bpmn2:exclusiveGateway>
63     <bpmn2:sequenceFlow id="no" name="No" sourceRef="resourceVersionCheck" targetRef="queryForResourceVersion">
64       <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("GENDS_resourceVersionProvidedFlag" ) == false}]]></bpmn2:conditionExpression>
65     </bpmn2:sequenceFlow>
66     <bpmn2:sequenceFlow id="yes" name="Yes" sourceRef="resourceVersionCheck" targetRef="ExclusiveGateway_2"/>
67     <bpmn2:scriptTask id="toggleSuccess" name="Toggle Success Indicator" scriptFormat="groovy">
68       <bpmn2:incoming>SequenceFlow_7</bpmn2:incoming>
69       <bpmn2:outgoing>SequenceFlow_4</bpmn2:outgoing>
70       <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.common.scripts.*
71 GenericDeleteService deleteService  = new GenericDeleteService()
72 deleteService.setSuccessIndicator(execution, true)
73
74 execution.setVariable("WorkflowResponse", " ")  //for junits
75 ]]></bpmn2:script>
76     </bpmn2:scriptTask>
77     <bpmn2:sequenceFlow id="SequenceFlow_4" name="" sourceRef="toggleSuccess" targetRef="EndEvent_1"/>
78     <bpmn2:exclusiveGateway id="ExclusiveGateway_2">
79       <bpmn2:incoming>yes</bpmn2:incoming>
80       <bpmn2:incoming>siExistYes</bpmn2:incoming>
81       <bpmn2:outgoing>SequenceFlow_6</bpmn2:outgoing>
82     </bpmn2:exclusiveGateway>
83     <bpmn2:sequenceFlow id="SequenceFlow_6" name="" sourceRef="ExclusiveGateway_2" targetRef="deleteServiceInstance"/>
84     <bpmn2:endEvent id="EndEvent_1">
85       <bpmn2:incoming>SequenceFlow_4</bpmn2:incoming>
86       <bpmn2:terminateEventDefinition id="_TerminateEventDefinition_24"/>
87     </bpmn2:endEvent>
88     <bpmn2:scriptTask id="deleteServiceInstance" name="DELETE&#xD;&#xA;Service Instance" scriptFormat="groovy">
89       <bpmn2:incoming>SequenceFlow_6</bpmn2:incoming>
90       <bpmn2:outgoing>SequenceFlow_7</bpmn2:outgoing>
91       <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.common.scripts.*
92 GenericDeleteService deleteService  = new GenericDeleteService()
93 deleteService.deleteServiceObject(execution)]]></bpmn2:script>
94     </bpmn2:scriptTask>
95     <bpmn2:sequenceFlow id="SequenceFlow_7" name="" sourceRef="deleteServiceInstance" targetRef="toggleSuccess"/>
96     <bpmn2:scriptTask id="queryForResourceVersion" name="Query SI Resource Version" scriptFormat="groovy">
97       <bpmn2:incoming>no</bpmn2:incoming>
98       <bpmn2:outgoing>SequenceFlow_5</bpmn2:outgoing>
99       <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.common.scripts.*
100 GenericDeleteService deleteService  = new GenericDeleteService()
101 deleteService.getServiceResourceVersion(execution)]]></bpmn2:script>
102     </bpmn2:scriptTask>
103     <bpmn2:sequenceFlow id="SequenceFlow_5" name="" sourceRef="queryForResourceVersion" targetRef="siExistCheck"/>
104     <bpmn2:exclusiveGateway id="siExistCheck" name="Service Exist?">
105       <bpmn2:incoming>SequenceFlow_5</bpmn2:incoming>
106       <bpmn2:outgoing>siExistYes</bpmn2:outgoing>
107       <bpmn2:outgoing>siExistNo</bpmn2:outgoing>
108     </bpmn2:exclusiveGateway>
109     <bpmn2:sequenceFlow id="siExistYes" name="Yes" sourceRef="siExistCheck" targetRef="ExclusiveGateway_2">
110       <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("GENDS_FoundIndicator" ) == true}]]></bpmn2:conditionExpression>
111     </bpmn2:sequenceFlow>
112     <bpmn2:sequenceFlow id="siExistNo" name="No" sourceRef="siExistCheck" targetRef="EndEvent_4"/>
113     <bpmn2:endEvent id="EndEvent_4">
114       <bpmn2:incoming>siExistNo</bpmn2:incoming>
115       <bpmn2:terminateEventDefinition id="_TerminateEventDefinition_38"/>
116     </bpmn2:endEvent>
117   </bpmn2:process>
118   <bpmn2:error id="Error_1" errorCode="MSOWorkflowException" name="MSO Workflow Exception"/>
119   <bpmndi:BPMNDiagram id="BPMNDiagram_1">
120     <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="GenericDeleteService">
121       <bpmndi:BPMNShape id="_BPMNShape_StartEvent_63" bpmnElement="StartEvent_1">
122         <dc:Bounds height="36.0" width="36.0" x="84.0" y="221.0"/>
123         <bpmndi:BPMNLabel>
124           <dc:Bounds height="0.0" width="0.0" x="102.0" y="262.0"/>
125         </bpmndi:BPMNLabel>
126       </bpmndi:BPMNShape>
127       <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_267" bpmnElement="initialization">
128         <dc:Bounds height="80.0" width="100.0" x="216.0" y="199.0"/>
129       </bpmndi:BPMNShape>
130       <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_224" bpmnElement="resourceVersionCheck" isMarkerVisible="true">
131         <dc:Bounds height="50.0" width="50.0" x="365.0" y="213.0"/>
132         <bpmndi:BPMNLabel>
133           <dc:Bounds height="22.0" width="169.0" x="401.0" y="243.0"/>
134         </bpmndi:BPMNLabel>
135       </bpmndi:BPMNShape>
136       <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_268" bpmnElement="queryForResourceVersion">
137         <dc:Bounds height="80.0" width="100.0" x="457.0" y="100.0"/>
138       </bpmndi:BPMNShape>
139       <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_225" bpmnElement="ExclusiveGateway_2" isMarkerVisible="true">
140         <dc:Bounds height="50.0" width="50.0" x="600.0" y="213.0"/>
141         <bpmndi:BPMNLabel>
142           <dc:Bounds height="0.0" width="0.0" x="625.0" y="268.0"/>
143         </bpmndi:BPMNLabel>
144       </bpmndi:BPMNShape>
145       <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_269" bpmnElement="deleteServiceInstance">
146         <dc:Bounds height="80.0" width="100.0" x="684.0" y="199.0"/>
147       </bpmndi:BPMNShape>
148       <bpmndi:BPMNShape id="_BPMNShape_EndEvent_213" bpmnElement="EndEvent_1">
149         <dc:Bounds height="36.0" width="36.0" x="1006.0" y="221.0"/>
150         <bpmndi:BPMNLabel>
151           <dc:Bounds height="0.0" width="0.0" x="1024.0" y="262.0"/>
152         </bpmndi:BPMNLabel>
153       </bpmndi:BPMNShape>
154       <bpmndi:BPMNShape id="_BPMNShape_SubProcess_20" bpmnElement="bpmnExceptionHandlingSubProcess" isExpanded="true">
155         <dc:Bounds height="169.0" width="321.0" x="155.0" y="384.0"/>
156       </bpmndi:BPMNShape>
157       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_1" bpmnElement="SequenceFlow_1" sourceElement="_BPMNShape_StartEvent_63" targetElement="_BPMNShape_ScriptTask_267">
158         <di:waypoint xsi:type="dc:Point" x="120.0" y="239.0"/>
159         <di:waypoint xsi:type="dc:Point" x="216.0" y="239.0"/>
160         <bpmndi:BPMNLabel>
161           <dc:Bounds height="6.0" width="6.0" x="147.0" y="239.0"/>
162         </bpmndi:BPMNLabel>
163       </bpmndi:BPMNEdge>
164       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_3" bpmnElement="SequenceFlow_3" sourceElement="_BPMNShape_ScriptTask_267" targetElement="_BPMNShape_ExclusiveGateway_224">
165         <di:waypoint xsi:type="dc:Point" x="316.0" y="239.0"/>
166         <di:waypoint xsi:type="dc:Point" x="365.0" y="238.0"/>
167         <bpmndi:BPMNLabel>
168           <dc:Bounds height="6.0" width="6.0" x="217.0" y="238.0"/>
169         </bpmndi:BPMNLabel>
170       </bpmndi:BPMNEdge>
171       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_4" bpmnElement="no" sourceElement="_BPMNShape_ExclusiveGateway_224" targetElement="_BPMNShape_ScriptTask_268">
172         <di:waypoint xsi:type="dc:Point" x="390.0" y="213.0"/>
173         <di:waypoint xsi:type="dc:Point" x="390.0" y="140.0"/>
174         <di:waypoint xsi:type="dc:Point" x="457.0" y="140.0"/>
175         <bpmndi:BPMNLabel>
176           <dc:Bounds height="22.0" width="22.0" x="392.0" y="179.0"/>
177         </bpmndi:BPMNLabel>
178       </bpmndi:BPMNEdge>
179       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_5" bpmnElement="SequenceFlow_5" sourceElement="_BPMNShape_ScriptTask_268" targetElement="_BPMNShape_ExclusiveGateway_241">
180         <di:waypoint xsi:type="dc:Point" x="557.0" y="140.0"/>
181         <di:waypoint xsi:type="dc:Point" x="600.0" y="139.0"/>
182         <bpmndi:BPMNLabel>
183           <dc:Bounds height="6.0" width="6.0" x="492.0" y="140.0"/>
184         </bpmndi:BPMNLabel>
185       </bpmndi:BPMNEdge>
186       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_6" bpmnElement="SequenceFlow_6" sourceElement="_BPMNShape_ExclusiveGateway_225" targetElement="_BPMNShape_ScriptTask_269">
187         <di:waypoint xsi:type="dc:Point" x="650.0" y="238.0"/>
188         <di:waypoint xsi:type="dc:Point" x="684.0" y="239.0"/>
189         <bpmndi:BPMNLabel>
190           <dc:Bounds height="6.0" width="6.0" x="556.0" y="239.0"/>
191         </bpmndi:BPMNLabel>
192       </bpmndi:BPMNEdge>
193       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_7" bpmnElement="SequenceFlow_7" sourceElement="_BPMNShape_ScriptTask_269" targetElement="_BPMNShape_ScriptTask_272">
194         <di:waypoint xsi:type="dc:Point" x="784.0" y="239.0"/>
195         <di:waypoint xsi:type="dc:Point" x="826.0" y="239.0"/>
196         <bpmndi:BPMNLabel>
197           <dc:Bounds height="6.0" width="6.0" x="778.0" y="239.0"/>
198         </bpmndi:BPMNLabel>
199       </bpmndi:BPMNEdge>
200       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_8" bpmnElement="yes" sourceElement="_BPMNShape_ExclusiveGateway_224" targetElement="_BPMNShape_ExclusiveGateway_225">
201         <di:waypoint xsi:type="dc:Point" x="390.0" y="263.0"/>
202         <di:waypoint xsi:type="dc:Point" x="390.0" y="310.0"/>
203         <di:waypoint xsi:type="dc:Point" x="517.0" y="310.0"/>
204         <di:waypoint xsi:type="dc:Point" x="625.0" y="310.0"/>
205         <di:waypoint xsi:type="dc:Point" x="625.0" y="263.0"/>
206         <bpmndi:BPMNLabel>
207           <dc:Bounds height="22.0" width="29.0" x="389.0" y="278.0"/>
208         </bpmndi:BPMNLabel>
209       </bpmndi:BPMNEdge>
210       <bpmndi:BPMNShape id="_BPMNShape_SubProcess_23" bpmnElement="javaExceptionSubProcess" isExpanded="true">
211         <dc:Bounds height="157.0" width="306.0" x="163.0" y="576.0"/>
212       </bpmndi:BPMNShape>
213       <bpmndi:BPMNShape id="_BPMNShape_StartEvent_65" bpmnElement="StartEvent_2">
214         <dc:Bounds height="36.0" width="36.0" x="180.0" y="451.0"/>
215         <bpmndi:BPMNLabel>
216           <dc:Bounds height="0.0" width="0.0" x="198.0" y="492.0"/>
217         </bpmndi:BPMNLabel>
218       </bpmndi:BPMNShape>
219       <bpmndi:BPMNShape id="_BPMNShape_StartEvent_66" bpmnElement="StartEvent_3">
220         <dc:Bounds height="36.0" width="36.0" x="192.0" y="637.0"/>
221         <bpmndi:BPMNLabel>
222           <dc:Bounds height="0.0" width="0.0" x="210.0" y="678.0"/>
223         </bpmndi:BPMNLabel>
224       </bpmndi:BPMNShape>
225       <bpmndi:BPMNShape id="_BPMNShape_EndEvent_216" bpmnElement="EndEvent_2">
226         <dc:Bounds height="36.0" width="36.0" x="408.0" y="637.0"/>
227         <bpmndi:BPMNLabel>
228           <dc:Bounds height="0.0" width="0.0" x="426.0" y="678.0"/>
229         </bpmndi:BPMNLabel>
230       </bpmndi:BPMNShape>
231       <bpmndi:BPMNShape id="_BPMNShape_EndEvent_217" bpmnElement="EndEvent_3">
232         <dc:Bounds height="36.0" width="36.0" x="420.0" y="451.0"/>
233         <bpmndi:BPMNLabel>
234           <dc:Bounds height="0.0" width="0.0" x="438.0" y="492.0"/>
235         </bpmndi:BPMNLabel>
236       </bpmndi:BPMNShape>
237       <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_270" bpmnElement="processError">
238         <dc:Bounds height="80.0" width="100.0" x="266.0" y="429.0"/>
239       </bpmndi:BPMNShape>
240       <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_271" bpmnElement="processJavaError">
241         <dc:Bounds height="80.0" width="100.0" x="267.0" y="615.0"/>
242       </bpmndi:BPMNShape>
243       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_9" bpmnElement="SequenceFlow_9" sourceElement="_BPMNShape_StartEvent_65" targetElement="_BPMNShape_ScriptTask_270">
244         <di:waypoint xsi:type="dc:Point" x="216.0" y="469.0"/>
245         <di:waypoint xsi:type="dc:Point" x="266.0" y="469.0"/>
246         <bpmndi:BPMNLabel>
247           <dc:Bounds height="6.0" width="6.0" x="232.0" y="469.0"/>
248         </bpmndi:BPMNLabel>
249       </bpmndi:BPMNEdge>
250       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_10" bpmnElement="SequenceFlow_10" sourceElement="_BPMNShape_ScriptTask_270" targetElement="_BPMNShape_EndEvent_217">
251         <di:waypoint xsi:type="dc:Point" x="366.0" y="469.0"/>
252         <di:waypoint xsi:type="dc:Point" x="420.0" y="469.0"/>
253         <bpmndi:BPMNLabel>
254           <dc:Bounds height="6.0" width="6.0" x="384.0" y="469.0"/>
255         </bpmndi:BPMNLabel>
256       </bpmndi:BPMNEdge>
257       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_11" bpmnElement="SequenceFlow_11" sourceElement="_BPMNShape_StartEvent_66" targetElement="_BPMNShape_ScriptTask_271">
258         <di:waypoint xsi:type="dc:Point" x="228.0" y="655.0"/>
259         <di:waypoint xsi:type="dc:Point" x="267.0" y="655.0"/>
260       </bpmndi:BPMNEdge>
261       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_12" bpmnElement="SequenceFlow_12" sourceElement="_BPMNShape_ScriptTask_271" targetElement="_BPMNShape_EndEvent_216">
262         <di:waypoint xsi:type="dc:Point" x="367.0" y="655.0"/>
263         <di:waypoint xsi:type="dc:Point" x="408.0" y="655.0"/>
264       </bpmndi:BPMNEdge>
265       <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_272" bpmnElement="toggleSuccess">
266         <dc:Bounds height="80.0" width="100.0" x="826.0" y="199.0"/>
267       </bpmndi:BPMNShape>
268       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_13" bpmnElement="SequenceFlow_4" sourceElement="_BPMNShape_ScriptTask_272" targetElement="_BPMNShape_EndEvent_213">
269         <di:waypoint xsi:type="dc:Point" x="926.0" y="239.0"/>
270         <di:waypoint xsi:type="dc:Point" x="1006.0" y="239.0"/>
271         <bpmndi:BPMNLabel>
272           <dc:Bounds height="6.0" width="6.0" x="828.0" y="239.0"/>
273         </bpmndi:BPMNLabel>
274       </bpmndi:BPMNEdge>
275       <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_241" bpmnElement="siExistCheck" isMarkerVisible="true">
276         <dc:Bounds height="50.0" width="50.0" x="600.0" y="114.0"/>
277         <bpmndi:BPMNLabel>
278           <dc:Bounds height="22.0" width="59.0" x="596.0" y="94.0"/>
279         </bpmndi:BPMNLabel>
280       </bpmndi:BPMNShape>
281       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_2" bpmnElement="siExistYes" sourceElement="_BPMNShape_ExclusiveGateway_241" targetElement="_BPMNShape_ExclusiveGateway_225">
282         <di:waypoint xsi:type="dc:Point" x="625.0" y="164.0"/>
283         <di:waypoint xsi:type="dc:Point" x="625.0" y="213.0"/>
284         <bpmndi:BPMNLabel>
285           <dc:Bounds height="22.0" width="29.0" x="624.0" y="168.0"/>
286         </bpmndi:BPMNLabel>
287       </bpmndi:BPMNEdge>
288       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_15" bpmnElement="siExistNo" sourceElement="_BPMNShape_ExclusiveGateway_241" targetElement="_BPMNShape_EndEvent_241">
289         <di:waypoint xsi:type="dc:Point" x="650.0" y="139.0"/>
290         <di:waypoint xsi:type="dc:Point" x="733.0" y="140.0"/>
291         <bpmndi:BPMNLabel>
292           <dc:Bounds height="22.0" width="22.0" x="664.0" y="140.0"/>
293         </bpmndi:BPMNLabel>
294       </bpmndi:BPMNEdge>
295       <bpmndi:BPMNShape id="_BPMNShape_EndEvent_241" bpmnElement="EndEvent_4">
296         <dc:Bounds height="36.0" width="36.0" x="733.0" y="122.0"/>
297         <bpmndi:BPMNLabel>
298           <dc:Bounds height="0.0" width="0.0" x="751.0" y="163.0"/>
299         </bpmndi:BPMNLabel>
300       </bpmndi:BPMNShape>
301     </bpmndi:BPMNPlane>
302   </bpmndi:BPMNDiagram>
303 </bpmn2:definitions>