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