blob: 435f91921d5b05e3c16ccf304b7362eb64154214 [file] [log] [blame]
Isaac Manuel Raj5a3bc532020-03-04 19:35:41 +05301<?xml version="1.0" encoding="UTF-8"?>
2<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" id="Definitions_1" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="2.2.3">
3 <bpmn:process id="DoCreateSliceServiceOption" name="DoCreateSliceServiceOption" isExecutable="true">
4 <bpmn:startEvent id="createNS_StartEvent" name="createOption_StartEvent">
5 <bpmn:outgoing>SequenceFlow_1qo2pln</bpmn:outgoing>
6 </bpmn:startEvent>
7 <bpmn:sequenceFlow id="SequenceFlow_1qo2pln" sourceRef="createNS_StartEvent" targetRef="PreprocessIncomingRequest_task" />
8 <bpmn:sequenceFlow id="SequenceFlow_0khtova" sourceRef="PreprocessIncomingRequest_task" targetRef="ExclusiveGateway_0b9d9l0" />
9 <bpmn:scriptTask id="Task_09nzhwk" name="send request to OOF for NSI options" scriptFormat="groovy">
10 <bpmn:incoming>SequenceFlow_1h5bw41</bpmn:incoming>
11 <bpmn:outgoing>SequenceFlow_1utpplq</bpmn:outgoing>
12 <bpmn:script>import org.onap.so.bpmn.infrastructure.scripts.*
13def dcso = new DoCreateSliceServiceOption()
14dcso.getNSIOptionfromOOF(execution)</bpmn:script>
15 </bpmn:scriptTask>
16 <bpmn:scriptTask id="PreprocessIncomingRequest_task" name="Preprocess Request" scriptFormat="groovy">
17 <bpmn:incoming>SequenceFlow_1qo2pln</bpmn:incoming>
18 <bpmn:outgoing>SequenceFlow_0khtova</bpmn:outgoing>
19 <bpmn:script>import org.onap.so.bpmn.infrastructure.scripts.*
20def dcso = new DoCreateSliceServiceOption()
21dcso.preProcessRequest(execution)</bpmn:script>
22 </bpmn:scriptTask>
23 <bpmn:sequenceFlow id="SequenceFlow_0cq2q6g" sourceRef="finishNSCreate_Task" targetRef="ScriptTask_0j3wd2o" />
24 <bpmn:endEvent id="EndEvent_1x6k78c">
25 <bpmn:incoming>SequenceFlow_01ak5x3</bpmn:incoming>
26 <bpmn:incoming>SequenceFlow_1ap8kar</bpmn:incoming>
27 <bpmn:incoming>SequenceFlow_0hnsycl</bpmn:incoming>
28 </bpmn:endEvent>
29 <bpmn:scriptTask id="finishNSCreate_Task" name="prepare list of NSSI associated with NSI" scriptFormat="groovy">
30 <bpmn:incoming>SequenceFlow_15679e8</bpmn:incoming>
31 <bpmn:outgoing>SequenceFlow_0cq2q6g</bpmn:outgoing>
32 <bpmn:script>import org.onap.so.bpmn.infrastructure.scripts.*
33def dcso = new DoCreateSliceServiceOption()
34dcso.prepareNSSIList(execution)</bpmn:script>
35 </bpmn:scriptTask>
36 <bpmn:exclusiveGateway id="ExclusiveGateway_0b9d9l0" default="SequenceFlow_0ueeeca">
37 <bpmn:incoming>SequenceFlow_0khtova</bpmn:incoming>
38 <bpmn:outgoing>SequenceFlow_1h5bw41</bpmn:outgoing>
39 <bpmn:outgoing>SequenceFlow_0ueeeca</bpmn:outgoing>
40 </bpmn:exclusiveGateway>
41 <bpmn:sequenceFlow id="SequenceFlow_1h5bw41" name="NSI Sharable" sourceRef="ExclusiveGateway_0b9d9l0" targetRef="Task_09nzhwk">
42 <bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">#{(execution.getVariable("isSharable" ) == true)}</bpmn:conditionExpression>
43 </bpmn:sequenceFlow>
44 <bpmn:scriptTask id="ScriptTask_1ehyrsg" name="update task status in request DB" scriptFormat="groovy">
45 <bpmn:incoming>SequenceFlow_0ueeeca</bpmn:incoming>
46 <bpmn:outgoing>SequenceFlow_0ojueqq</bpmn:outgoing>
47 <bpmn:script>import org.onap.so.bpmn.infrastructure.scripts.*
48def dcso = new DoCreateSliceServiceOption()
49dcso.updateStatusInDB(execution)</bpmn:script>
50 </bpmn:scriptTask>
51 <bpmn:sequenceFlow id="SequenceFlow_0ueeeca" name="NSI Not Sharable" sourceRef="ExclusiveGateway_0b9d9l0" targetRef="ScriptTask_1ehyrsg" />
52 <bpmn:endEvent id="EndEvent_00n990e">
53 <bpmn:incoming>SequenceFlow_0ojueqq</bpmn:incoming>
54 </bpmn:endEvent>
55 <bpmn:scriptTask id="ScriptTask_0j3wd2o" name="updated options in request DB" scriptFormat="groovy">
56 <bpmn:incoming>SequenceFlow_0cq2q6g</bpmn:incoming>
57 <bpmn:outgoing>SequenceFlow_01ak5x3</bpmn:outgoing>
58 <bpmn:script>import org.onap.so.bpmn.infrastructure.scripts.*
59def dcso = new DoCreateSliceServiceOption()
60dcso.updateOptionsInDB(execution)</bpmn:script>
61 </bpmn:scriptTask>
62 <bpmn:sequenceFlow id="SequenceFlow_01ak5x3" sourceRef="ScriptTask_0j3wd2o" targetRef="EndEvent_1x6k78c" />
63 <bpmn:scriptTask id="ScriptTask_0kecvrc" name="prepare list of NSST associated with NST" scriptFormat="groovy">
64 <bpmn:incoming>SequenceFlow_1614gtr</bpmn:incoming>
65 <bpmn:outgoing>SequenceFlow_0lt2cdo</bpmn:outgoing>
66 <bpmn:script>import org.onap.so.bpmn.infrastructure.scripts.*
67def dcso = new DoCreateSliceServiceOption()
68dcso.prepareNSSTlistfromNST(execution)</bpmn:script>
69 </bpmn:scriptTask>
70 <bpmn:scriptTask id="ScriptTask_1mlytov" name="send request to OOF for NSSI options" scriptFormat="groovy">
71 <bpmn:incoming>SequenceFlow_0a5f5y6</bpmn:incoming>
72 <bpmn:outgoing>SequenceFlow_1r9n9ef</bpmn:outgoing>
73 <bpmn:script>import org.onap.so.bpmn.infrastructure.scripts.*
74def dcso = new DoCreateSliceServiceOption()
75dcso.getNSSTOption(execution)</bpmn:script>
76 </bpmn:scriptTask>
77 <bpmn:exclusiveGateway id="ExclusiveGateway_1y1wzs9">
78 <bpmn:incoming>SequenceFlow_0lt2cdo</bpmn:incoming>
79 <bpmn:incoming>SequenceFlow_00gq7h2</bpmn:incoming>
80 <bpmn:outgoing>SequenceFlow_1ap8kar</bpmn:outgoing>
81 <bpmn:outgoing>SequenceFlow_0m2mr0o</bpmn:outgoing>
82 </bpmn:exclusiveGateway>
83 <bpmn:sequenceFlow id="SequenceFlow_1ap8kar" sourceRef="ExclusiveGateway_1y1wzs9" targetRef="EndEvent_1x6k78c">
84 <bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">#{(execution.getVariable("isMoreNSSTtoProcess" ) == false)}</bpmn:conditionExpression>
85 </bpmn:sequenceFlow>
86 <bpmn:sequenceFlow id="SequenceFlow_0lt2cdo" sourceRef="ScriptTask_0kecvrc" targetRef="ExclusiveGateway_1y1wzs9" />
87 <bpmn:sequenceFlow id="SequenceFlow_0m2mr0o" sourceRef="ExclusiveGateway_1y1wzs9" targetRef="ScriptTask_1e5ysya">
88 <bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">#{(execution.getVariable("isMoreNSSTtoProcess" ) == true)}</bpmn:conditionExpression>
89 </bpmn:sequenceFlow>
90 <bpmn:scriptTask id="ScriptTask_0ojz4lj" name="save NSI and NSSI options in DB" scriptFormat="groovy">
91 <bpmn:incoming>SequenceFlow_1r9n9ef</bpmn:incoming>
92 <bpmn:outgoing>SequenceFlow_00gq7h2</bpmn:outgoing>
93 <bpmn:script>import org.onap.so.bpmn.infrastructure.scripts.*
94def dcso = new DoCreateSliceServiceOption()
95dcso.updateOptionsInDB(execution)</bpmn:script>
96 </bpmn:scriptTask>
97 <bpmn:sequenceFlow id="SequenceFlow_1r9n9ef" sourceRef="ScriptTask_1mlytov" targetRef="ScriptTask_0ojz4lj" />
98 <bpmn:sequenceFlow id="SequenceFlow_00gq7h2" sourceRef="ScriptTask_0ojz4lj" targetRef="ExclusiveGateway_1y1wzs9" />
99 <bpmn:sequenceFlow id="SequenceFlow_0ojueqq" sourceRef="ScriptTask_1ehyrsg" targetRef="EndEvent_00n990e" />
100 <bpmn:exclusiveGateway id="ExclusiveGateway_1mdr1l2" default="SequenceFlow_1614gtr">
101 <bpmn:incoming>SequenceFlow_041f5ne</bpmn:incoming>
102 <bpmn:outgoing>SequenceFlow_15679e8</bpmn:outgoing>
103 <bpmn:outgoing>SequenceFlow_1614gtr</bpmn:outgoing>
104 </bpmn:exclusiveGateway>
105 <bpmn:sequenceFlow id="SequenceFlow_15679e8" sourceRef="ExclusiveGateway_1mdr1l2" targetRef="finishNSCreate_Task">
106 <bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">#{(execution.getVariable("isNSISuggested" ) == true)}</bpmn:conditionExpression>
107 </bpmn:sequenceFlow>
108 <bpmn:sequenceFlow id="SequenceFlow_1614gtr" sourceRef="ExclusiveGateway_1mdr1l2" targetRef="ScriptTask_0kecvrc" />
109 <bpmn:scriptTask id="ScriptTask_0uu3j3h" name="prepare NST decomposition" scriptFormat="groovy">
110 <bpmn:incoming>SequenceFlow_0wy6oag</bpmn:incoming>
111 <bpmn:outgoing>SequenceFlow_1jnsyix</bpmn:outgoing>
112 <bpmn:script>import org.onap.so.bpmn.infrastructure.scripts.*
113def dcso = new DoCreateSliceServiceOption()
114dcso.prepareNSTDecompose(execution)</bpmn:script>
115 </bpmn:scriptTask>
116 <bpmn:callActivity id="CallActivity_1qs8xd5" name="Call Decompose Service" calledElement="DecomposeService">
117 <bpmn:extensionElements>
118 <camunda:in source="msoRequestId" target="msoRequestId" />
119 <camunda:in source="serviceInstanceId" target="serviceInstanceId" />
120 <camunda:in source="serviceModelInfo" target="serviceModelInfo" />
121 <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" />
122 <camunda:out source="serviceDecomposition" target="serviceDecomposition" />
123 <camunda:out source="WorkflowException" target="WorkflowException" />
124 </bpmn:extensionElements>
125 <bpmn:incoming>SequenceFlow_1jnsyix</bpmn:incoming>
126 <bpmn:outgoing>SequenceFlow_041f5ne</bpmn:outgoing>
127 </bpmn:callActivity>
128 <bpmn:scriptTask id="ScriptTask_1e5ysya" name="prepare NSST decomposition" scriptFormat="groovy">
129 <bpmn:incoming>SequenceFlow_0m2mr0o</bpmn:incoming>
130 <bpmn:outgoing>SequenceFlow_016vi3s</bpmn:outgoing>
131 <bpmn:script>import org.onap.so.bpmn.infrastructure.scripts.*
132def dcso = new DoCreateSliceServiceOption()
133dcso.prepareNSSTDecompose(execution)</bpmn:script>
134 </bpmn:scriptTask>
135 <bpmn:sequenceFlow id="SequenceFlow_016vi3s" sourceRef="ScriptTask_1e5ysya" targetRef="CallActivity_1rfnoe2" />
136 <bpmn:callActivity id="CallActivity_1rfnoe2" name="Call Decompose Service" calledElement="DecomposeService">
137 <bpmn:extensionElements>
138 <camunda:in source="msoRequestId" target="msoRequestId" />
139 <camunda:in source="serviceInstanceId" target="serviceInstanceId" />
140 <camunda:in source="serviceModelInfo" target="serviceModelInfo" />
141 <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" />
142 <camunda:out source="serviceDecomposition" target="serviceDecomposition" />
143 <camunda:out source="WorkflowException" target="WorkflowException" />
144 </bpmn:extensionElements>
145 <bpmn:incoming>SequenceFlow_016vi3s</bpmn:incoming>
146 <bpmn:outgoing>SequenceFlow_0a5f5y6</bpmn:outgoing>
147 </bpmn:callActivity>
148 <bpmn:sequenceFlow id="SequenceFlow_0a5f5y6" sourceRef="CallActivity_1rfnoe2" targetRef="ScriptTask_1mlytov" />
149 <bpmn:sequenceFlow id="SequenceFlow_1utpplq" sourceRef="Task_09nzhwk" targetRef="ExclusiveGateway_1skfk7w" />
150 <bpmn:sequenceFlow id="SequenceFlow_1jnsyix" sourceRef="ScriptTask_0uu3j3h" targetRef="CallActivity_1qs8xd5" />
151 <bpmn:sequenceFlow id="SequenceFlow_041f5ne" sourceRef="CallActivity_1qs8xd5" targetRef="ExclusiveGateway_1mdr1l2" />
152 <bpmn:exclusiveGateway id="ExclusiveGateway_1skfk7w" default="SequenceFlow_0wy6oag">
153 <bpmn:incoming>SequenceFlow_1utpplq</bpmn:incoming>
154 <bpmn:outgoing>SequenceFlow_0wy6oag</bpmn:outgoing>
155 <bpmn:outgoing>SequenceFlow_0hnsycl</bpmn:outgoing>
156 </bpmn:exclusiveGateway>
157 <bpmn:sequenceFlow id="SequenceFlow_0wy6oag" sourceRef="ExclusiveGateway_1skfk7w" targetRef="ScriptTask_0uu3j3h" />
158 <bpmn:sequenceFlow id="SequenceFlow_0hnsycl" sourceRef="ExclusiveGateway_1skfk7w" targetRef="EndEvent_1x6k78c">
159 <bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">#{(execution.getVariable("isNSISuggested" ) == true)}</bpmn:conditionExpression>
160 </bpmn:sequenceFlow>
161 </bpmn:process>
162 <bpmndi:BPMNDiagram id="BPMNDiagram_1">
163 <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="DoCreateSliceServiceOption">
164 <bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="createNS_StartEvent">
165 <dc:Bounds x="175" y="187" width="36" height="36" />
166 <bpmndi:BPMNLabel>
167 <dc:Bounds x="150" y="223" width="87" height="27" />
168 </bpmndi:BPMNLabel>
169 </bpmndi:BPMNShape>
170 <bpmndi:BPMNEdge id="SequenceFlow_1qo2pln_di" bpmnElement="SequenceFlow_1qo2pln">
171 <di:waypoint x="211" y="205" />
172 <di:waypoint x="251" y="205" />
173 <di:waypoint x="251" y="205" />
174 <di:waypoint x="293" y="205" />
175 <bpmndi:BPMNLabel>
176 <dc:Bounds x="266" y="123" width="0" height="12" />
177 </bpmndi:BPMNLabel>
178 </bpmndi:BPMNEdge>
179 <bpmndi:BPMNEdge id="SequenceFlow_0khtova_di" bpmnElement="SequenceFlow_0khtova">
180 <di:waypoint x="393" y="205" />
181 <di:waypoint x="448" y="205" />
182 <bpmndi:BPMNLabel>
183 <dc:Bounds x="436" y="108" width="0" height="12" />
184 </bpmndi:BPMNLabel>
185 </bpmndi:BPMNEdge>
186 <bpmndi:BPMNShape id="ScriptTask_1dw39hg_di" bpmnElement="Task_09nzhwk">
187 <dc:Bounds x="594" y="165" width="100" height="80" />
188 </bpmndi:BPMNShape>
189 <bpmndi:BPMNShape id="ScriptTask_03j6ogo_di" bpmnElement="PreprocessIncomingRequest_task">
190 <dc:Bounds x="293" y="165" width="100" height="80" />
191 </bpmndi:BPMNShape>
192 <bpmndi:BPMNEdge id="SequenceFlow_0cq2q6g_di" bpmnElement="SequenceFlow_0cq2q6g">
193 <di:waypoint x="1536" y="205" />
194 <di:waypoint x="1592" y="205" />
195 <bpmndi:BPMNLabel>
196 <dc:Bounds x="556.5" y="574" width="90" height="12" />
197 </bpmndi:BPMNLabel>
198 </bpmndi:BPMNEdge>
199 <bpmndi:BPMNShape id="EndEvent_15pcuuc_di" bpmnElement="EndEvent_1x6k78c">
200 <dc:Bounds x="1813" y="187" width="36" height="36" />
201 <bpmndi:BPMNLabel>
202 <dc:Bounds x="412" y="617" width="90" height="12" />
203 </bpmndi:BPMNLabel>
204 </bpmndi:BPMNShape>
205 <bpmndi:BPMNShape id="ScriptTask_0xxyfku_di" bpmnElement="finishNSCreate_Task">
206 <dc:Bounds x="1436" y="165" width="100" height="80" />
207 </bpmndi:BPMNShape>
208 <bpmndi:BPMNShape id="ExclusiveGateway_0b9d9l0_di" bpmnElement="ExclusiveGateway_0b9d9l0" isMarkerVisible="true">
209 <dc:Bounds x="448" y="180" width="50" height="50" />
210 </bpmndi:BPMNShape>
211 <bpmndi:BPMNEdge id="SequenceFlow_1h5bw41_di" bpmnElement="SequenceFlow_1h5bw41">
212 <di:waypoint x="498" y="205" />
213 <di:waypoint x="594" y="205" />
214 <bpmndi:BPMNLabel>
215 <dc:Bounds x="514" y="187" width="66" height="14" />
216 </bpmndi:BPMNLabel>
217 </bpmndi:BPMNEdge>
218 <bpmndi:BPMNShape id="ScriptTask_1ehyrsg_di" bpmnElement="ScriptTask_1ehyrsg">
219 <dc:Bounds x="602" y="-197" width="100" height="80" />
220 </bpmndi:BPMNShape>
221 <bpmndi:BPMNEdge id="SequenceFlow_0ueeeca_di" bpmnElement="SequenceFlow_0ueeeca">
222 <di:waypoint x="473" y="180" />
223 <di:waypoint x="473" y="-157" />
224 <di:waypoint x="602" y="-157" />
225 <bpmndi:BPMNLabel>
226 <dc:Bounds x="415" y="14" width="86" height="14" />
227 </bpmndi:BPMNLabel>
228 </bpmndi:BPMNEdge>
229 <bpmndi:BPMNShape id="EndEvent_00n990e_di" bpmnElement="EndEvent_00n990e">
230 <dc:Bounds x="785" y="-175" width="36" height="36" />
231 </bpmndi:BPMNShape>
232 <bpmndi:BPMNShape id="ScriptTask_0j3wd2o_di" bpmnElement="ScriptTask_0j3wd2o">
233 <dc:Bounds x="1592" y="165" width="100" height="80" />
234 </bpmndi:BPMNShape>
235 <bpmndi:BPMNEdge id="SequenceFlow_01ak5x3_di" bpmnElement="SequenceFlow_01ak5x3">
236 <di:waypoint x="1692" y="205" />
237 <di:waypoint x="1813" y="205" />
238 </bpmndi:BPMNEdge>
239 <bpmndi:BPMNShape id="ScriptTask_0kecvrc_di" bpmnElement="ScriptTask_0kecvrc">
240 <dc:Bounds x="1297" y="391" width="100" height="80" />
241 </bpmndi:BPMNShape>
242 <bpmndi:BPMNShape id="ScriptTask_1mlytov_di" bpmnElement="ScriptTask_1mlytov">
243 <dc:Bounds x="1781" y="533" width="100" height="80" />
244 </bpmndi:BPMNShape>
245 <bpmndi:BPMNShape id="ExclusiveGateway_1y1wzs9_di" bpmnElement="ExclusiveGateway_1y1wzs9" isMarkerVisible="true">
246 <dc:Bounds x="1461" y="406" width="50" height="50" />
247 </bpmndi:BPMNShape>
248 <bpmndi:BPMNEdge id="SequenceFlow_1ap8kar_di" bpmnElement="SequenceFlow_1ap8kar">
249 <di:waypoint x="1486" y="406" />
250 <di:waypoint x="1486" y="315" />
251 <di:waypoint x="1831" y="315" />
252 <di:waypoint x="1831" y="223" />
253 </bpmndi:BPMNEdge>
254 <bpmndi:BPMNEdge id="SequenceFlow_0lt2cdo_di" bpmnElement="SequenceFlow_0lt2cdo">
255 <di:waypoint x="1397" y="431" />
256 <di:waypoint x="1461" y="431" />
257 </bpmndi:BPMNEdge>
258 <bpmndi:BPMNEdge id="SequenceFlow_0m2mr0o_di" bpmnElement="SequenceFlow_0m2mr0o">
259 <di:waypoint x="1511" y="431" />
260 <di:waypoint x="1592" y="431" />
261 </bpmndi:BPMNEdge>
262 <bpmndi:BPMNShape id="ScriptTask_0ojz4lj_di" bpmnElement="ScriptTask_0ojz4lj">
263 <dc:Bounds x="1592" y="533" width="100" height="80" />
264 </bpmndi:BPMNShape>
265 <bpmndi:BPMNEdge id="SequenceFlow_1r9n9ef_di" bpmnElement="SequenceFlow_1r9n9ef">
266 <di:waypoint x="1781" y="573" />
267 <di:waypoint x="1692" y="573" />
268 </bpmndi:BPMNEdge>
269 <bpmndi:BPMNEdge id="SequenceFlow_00gq7h2_di" bpmnElement="SequenceFlow_00gq7h2">
270 <di:waypoint x="1592" y="573" />
271 <di:waypoint x="1486" y="573" />
272 <di:waypoint x="1486" y="456" />
273 </bpmndi:BPMNEdge>
274 <bpmndi:BPMNEdge id="SequenceFlow_0ojueqq_di" bpmnElement="SequenceFlow_0ojueqq">
275 <di:waypoint x="702" y="-157" />
276 <di:waypoint x="785" y="-157" />
277 </bpmndi:BPMNEdge>
278 <bpmndi:BPMNShape id="ExclusiveGateway_1mdr1l2_di" bpmnElement="ExclusiveGateway_1mdr1l2" isMarkerVisible="true">
279 <dc:Bounds x="1322" y="180" width="50" height="50" />
280 </bpmndi:BPMNShape>
281 <bpmndi:BPMNEdge id="SequenceFlow_15679e8_di" bpmnElement="SequenceFlow_15679e8">
282 <di:waypoint x="1372" y="205" />
283 <di:waypoint x="1436" y="205" />
284 </bpmndi:BPMNEdge>
285 <bpmndi:BPMNEdge id="SequenceFlow_1614gtr_di" bpmnElement="SequenceFlow_1614gtr">
286 <di:waypoint x="1347" y="230" />
287 <di:waypoint x="1347" y="391" />
288 </bpmndi:BPMNEdge>
289 <bpmndi:BPMNShape id="ScriptTask_0uu3j3h_di" bpmnElement="ScriptTask_0uu3j3h">
290 <dc:Bounds x="967" y="165" width="100" height="80" />
291 </bpmndi:BPMNShape>
292 <bpmndi:BPMNShape id="CallActivity_1qs8xd5_di" bpmnElement="CallActivity_1qs8xd5">
293 <dc:Bounds x="1136" y="165" width="100" height="80" />
294 </bpmndi:BPMNShape>
295 <bpmndi:BPMNShape id="ScriptTask_1e5ysya_di" bpmnElement="ScriptTask_1e5ysya">
296 <dc:Bounds x="1592" y="391" width="100" height="80" />
297 </bpmndi:BPMNShape>
298 <bpmndi:BPMNEdge id="SequenceFlow_016vi3s_di" bpmnElement="SequenceFlow_016vi3s">
299 <di:waypoint x="1692" y="431" />
300 <di:waypoint x="1781" y="431" />
301 </bpmndi:BPMNEdge>
302 <bpmndi:BPMNShape id="CallActivity_1rfnoe2_di" bpmnElement="CallActivity_1rfnoe2">
303 <dc:Bounds x="1781" y="391" width="100" height="80" />
304 </bpmndi:BPMNShape>
305 <bpmndi:BPMNEdge id="SequenceFlow_0a5f5y6_di" bpmnElement="SequenceFlow_0a5f5y6">
306 <di:waypoint x="1881" y="431" />
307 <di:waypoint x="1968" y="431" />
308 <di:waypoint x="1968" y="573" />
309 <di:waypoint x="1881" y="573" />
310 </bpmndi:BPMNEdge>
311 <bpmndi:BPMNEdge id="SequenceFlow_1utpplq_di" bpmnElement="SequenceFlow_1utpplq">
312 <di:waypoint x="694" y="205" />
313 <di:waypoint x="796" y="205" />
314 </bpmndi:BPMNEdge>
315 <bpmndi:BPMNEdge id="SequenceFlow_1jnsyix_di" bpmnElement="SequenceFlow_1jnsyix">
316 <di:waypoint x="1067" y="205" />
317 <di:waypoint x="1136" y="205" />
318 </bpmndi:BPMNEdge>
319 <bpmndi:BPMNEdge id="SequenceFlow_041f5ne_di" bpmnElement="SequenceFlow_041f5ne">
320 <di:waypoint x="1236" y="205" />
321 <di:waypoint x="1322" y="205" />
322 </bpmndi:BPMNEdge>
323 <bpmndi:BPMNShape id="ExclusiveGateway_1skfk7w_di" bpmnElement="ExclusiveGateway_1skfk7w" isMarkerVisible="true">
324 <dc:Bounds x="796" y="180" width="50" height="50" />
325 </bpmndi:BPMNShape>
326 <bpmndi:BPMNEdge id="SequenceFlow_0wy6oag_di" bpmnElement="SequenceFlow_0wy6oag">
327 <di:waypoint x="846" y="205" />
328 <di:waypoint x="967" y="205" />
329 </bpmndi:BPMNEdge>
330 <bpmndi:BPMNEdge id="SequenceFlow_0hnsycl_di" bpmnElement="SequenceFlow_0hnsycl">
331 <di:waypoint x="821" y="180" />
332 <di:waypoint x="821" y="90" />
333 <di:waypoint x="1831" y="90" />
334 <di:waypoint x="1831" y="187" />
335 </bpmndi:BPMNEdge>
336 </bpmndi:BPMNPlane>
337 </bpmndi:BPMNDiagram>
338</bpmn:definitions>