blob: 5f4f9640085df82b44fd1ab93205434653b2e875 [file] [log] [blame]
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -04001<?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="1.10.0">
3 <bpmn:process id="CreateActivateSDNCResource" name="CreateActivateSDNCResource" isExecutable="true">
4 <bpmn:startEvent id="createSDNCRES_StartEvent" name="createSDNCRES_StartEvent">
5 <bpmn:outgoing>SequenceFlow_1qo2pln</bpmn:outgoing>
6 </bpmn:startEvent>
7 <bpmn:sequenceFlow id="SequenceFlow_1qo2pln" sourceRef="createSDNCRES_StartEvent" targetRef="Task_1dlrfiw" />
8 <bpmn:sequenceFlow id="SequenceFlow_0khtova" sourceRef="PreprocessIncomingRequest_task" targetRef="Task_0tezqd4" />
9 <bpmn:scriptTask id="PreprocessIncomingRequest_task" name="prepare SDNC Create Request" scriptFormat="groovy">
10 <bpmn:incoming>SequenceFlow_18l3crb</bpmn:incoming>
11 <bpmn:outgoing>SequenceFlow_0khtova</bpmn:outgoing>
12 <bpmn:script><![CDATA[import org.onap.so.bpmn.infrastructure.scripts.*
13def dcsi = new CreateActivateSDNCResource()
14dcsi.prepareSDNCRequest(execution)]]></bpmn:script>
15 </bpmn:scriptTask>
16 <bpmn:endEvent id="EndEvent_1x6k78c" name="create SDNC call end">
17 <bpmn:incoming>SequenceFlow_17md60u</bpmn:incoming>
18 </bpmn:endEvent>
19 <bpmn:callActivity id="CallActivity_1600xlj" name="Call SDNC RSRC Create&#10; Adapter V1&#10;" calledElement="sdncAdapter">
20 <bpmn:extensionElements>
21 <camunda:in source="CRESDNCRES_activateSDNCRequest" target="sdncAdapterWorkflowRequest" />
22 <camunda:in source="mso-request-id" target="mso-request-id" />
23 <camunda:in source="mso-service-instance-id" target="mso-service-instance-id" />
24 <camunda:out source="sdncAdapterResponse" target="sdncAdapterResponse" />
25 <camunda:out source="SDNCA_ResponseCode" target="SDNCA_ResponseCode" />
26 <camunda:out source="SDNCA_SuccessIndicator" target="SDNCA_SuccessIndicator" />
27 <camunda:out source="WorkflowException" target="WorkflowException" />
28 <camunda:in source="sdncAdapterWorkflowRequest" target="sdncAdapterWorkflowRequest" />
29 </bpmn:extensionElements>
30 <bpmn:incoming>SequenceFlow_15mvedq</bpmn:incoming>
31 <bpmn:outgoing>SequenceFlow_1xk5xed</bpmn:outgoing>
32 </bpmn:callActivity>
33 <bpmn:sequenceFlow id="SequenceFlow_1xk5xed" sourceRef="CallActivity_1600xlj" targetRef="Task_0mszkkr" />
34 <bpmn:sequenceFlow id="SequenceFlow_0ow44q0" sourceRef="Task_023hred" targetRef="ScriptTask_1g5zyi6" />
35 <bpmn:scriptTask id="Task_023hred" name="post SDNC create call">
36 <bpmn:incoming>SequenceFlow_1afu5al</bpmn:incoming>
37 <bpmn:outgoing>SequenceFlow_0ow44q0</bpmn:outgoing>
38 <bpmn:script><![CDATA[import org.onap.so.bpmn.infrastructure.scripts.*
39def dcsi = new CreateActivateSDNCResource()
40dcsi.postCreateSDNCCall(execution)]]></bpmn:script>
41 </bpmn:scriptTask>
42 <bpmn:sequenceFlow id="SequenceFlow_0w2es8j" sourceRef="Task_1dlrfiw" targetRef="Task_13sx2bp" />
43 <bpmn:sequenceFlow id="SequenceFlow_18l3crb" sourceRef="Task_13sx2bp" targetRef="PreprocessIncomingRequest_task" />
44 <bpmn:scriptTask id="Task_1dlrfiw" name="Set the Recipe DesignTimeParam" scriptFormat="groovy">
45 <bpmn:incoming>SequenceFlow_1qo2pln</bpmn:incoming>
46 <bpmn:outgoing>SequenceFlow_0w2es8j</bpmn:outgoing>
47 <bpmn:script><![CDATA[String recipeParamXsdDemo="""{"operationType":"VPN","apiType":"network"}"""
48String recipeParamXsd=""
49execution.setVariable("recipeParamXsd", recipeParamXsd)]]></bpmn:script>
50 </bpmn:scriptTask>
51 <bpmn:scriptTask id="Task_13sx2bp" name="Pre Process Request" scriptFormat="groovy">
52 <bpmn:incoming>SequenceFlow_0w2es8j</bpmn:incoming>
53 <bpmn:outgoing>SequenceFlow_18l3crb</bpmn:outgoing>
54 <bpmn:script><![CDATA[import org.onap.so.bpmn.infrastructure.scripts.*
55def dcsi = new CreateActivateSDNCResource()
56dcsi.preProcessRequest(execution)]]></bpmn:script>
57 </bpmn:scriptTask>
58 <bpmn:sequenceFlow id="SequenceFlow_1mz0vdx" sourceRef="Task_0tezqd4" targetRef="Task_18tomkl" />
59 <bpmn:sequenceFlow id="SequenceFlow_15mvedq" sourceRef="Task_18tomkl" targetRef="CallActivity_1600xlj" />
60 <bpmn:scriptTask id="Task_0tezqd4" name="Create progress update parameters before create" scriptFormat="groovy">
61 <bpmn:incoming>SequenceFlow_0khtova</bpmn:incoming>
62 <bpmn:outgoing>SequenceFlow_1mz0vdx</bpmn:outgoing>
63 <bpmn:script><![CDATA[import org.onap.so.bpmn.infrastructure.scripts.*
64def dcsi = new CreateActivateSDNCResource()
65dcsi.prepareUpdateBeforeCreateSDNCResource(execution)]]></bpmn:script>
66 </bpmn:scriptTask>
67 <bpmn:scriptTask id="Task_0uwlr22" name="Create progress update parameters After create" scriptFormat="groovy">
68 <bpmn:incoming>SequenceFlow_0ruppyi</bpmn:incoming>
69 <bpmn:outgoing>SequenceFlow_1jr6zi0</bpmn:outgoing>
70 <bpmn:script><![CDATA[import org.onap.so.bpmn.infrastructure.scripts.*
71def dcsi = new CreateActivateSDNCResource()
72dcsi.prepareUpdateAfterCreateSDNCResource(execution)]]></bpmn:script>
73 </bpmn:scriptTask>
74 <bpmn:serviceTask id="Task_18tomkl" name="update progress update">
75 <bpmn:extensionElements>
76 <camunda:connector>
77 <camunda:inputOutput>
78 <camunda:inputParameter name="url">${CVFMI_dbAdapterEndpoint}</camunda:inputParameter>
79 <camunda:inputParameter name="headers">
80 <camunda:map>
81 <camunda:entry key="content-type">application/soap+xml</camunda:entry>
subhash kumar singh0578fc42018-11-15 12:27:09 +053082 <camunda:entry key="Authorization">Basic YnBlbDpwYXNzd29yZDEk</camunda:entry>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040083 </camunda:map>
84 </camunda:inputParameter>
85 <camunda:inputParameter name="payload">${CVFMI_updateResOperStatusRequest}</camunda:inputParameter>
86 <camunda:inputParameter name="method">POST</camunda:inputParameter>
87 <camunda:outputParameter name="CVFMI_dbResponseCode">${statusCode}</camunda:outputParameter>
88 <camunda:outputParameter name="CVFMI_dbResponse">${response}</camunda:outputParameter>
89 </camunda:inputOutput>
90 <camunda:connectorId>http-connector</camunda:connectorId>
91 </camunda:connector>
92 </bpmn:extensionElements>
93 <bpmn:incoming>SequenceFlow_1mz0vdx</bpmn:incoming>
94 <bpmn:outgoing>SequenceFlow_15mvedq</bpmn:outgoing>
95 </bpmn:serviceTask>
96 <bpmn:serviceTask id="ServiceTask_1cm8iwr" name="update progress update">
97 <bpmn:extensionElements>
98 <camunda:connector>
99 <camunda:inputOutput>
100 <camunda:inputParameter name="url">${CVFMI_dbAdapterEndpoint}</camunda:inputParameter>
101 <camunda:inputParameter name="headers">
102 <camunda:map>
103 <camunda:entry key="content-type">application/soap+xml</camunda:entry>
subhash kumar singh0578fc42018-11-15 12:27:09 +0530104 <camunda:entry key="Authorization">Basic YnBlbDpwYXNzd29yZDEk</camunda:entry>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400105 </camunda:map>
106 </camunda:inputParameter>
107 <camunda:inputParameter name="payload">${CVFMI_updateResOperStatusRequest}</camunda:inputParameter>
108 <camunda:inputParameter name="method">POST</camunda:inputParameter>
109 <camunda:outputParameter name="CVFMI_dbResponseCode">${statusCode}</camunda:outputParameter>
110 <camunda:outputParameter name="CVFMI_dbResponse">${response}</camunda:outputParameter>
111 </camunda:inputOutput>
112 <camunda:connectorId>http-connector</camunda:connectorId>
113 </camunda:connector>
114 </bpmn:extensionElements>
115 <bpmn:incoming>SequenceFlow_1jr6zi0</bpmn:incoming>
116 <bpmn:outgoing>SequenceFlow_10cy2nu</bpmn:outgoing>
117 </bpmn:serviceTask>
118 <bpmn:sequenceFlow id="SequenceFlow_1jr6zi0" sourceRef="Task_0uwlr22" targetRef="ServiceTask_1cm8iwr" />
119 <bpmn:scriptTask id="ScriptTask_1g5zyi6" name="Send Sync Ack Response" scriptFormat="groovy">
120 <bpmn:incoming>SequenceFlow_0ow44q0</bpmn:incoming>
121 <bpmn:outgoing>SequenceFlow_17md60u</bpmn:outgoing>
122 <bpmn:script><![CDATA[import org.onap.so.bpmn.infrastructure.scripts.*
123def csi = new CreateActivateSDNCResource()
124csi.sendSyncResponse(execution)]]></bpmn:script>
125 </bpmn:scriptTask>
126 <bpmn:sequenceFlow id="SequenceFlow_17md60u" sourceRef="ScriptTask_1g5zyi6" targetRef="EndEvent_1x6k78c" />
127 <bpmn:scriptTask id="ScriptTask_0a98d9a" name="prepare SDNC Activate Request" scriptFormat="groovy">
128 <bpmn:incoming>SequenceFlow_10cy2nu</bpmn:incoming>
129 <bpmn:outgoing>SequenceFlow_0rp0tdn</bpmn:outgoing>
130 <bpmn:script><![CDATA[import org.onap.so.bpmn.infrastructure.scripts.*
131def dcsi = new CreateActivateSDNCResource()
132dcsi.prepareSDNCActivateRequest(execution)]]></bpmn:script>
133 </bpmn:scriptTask>
134 <bpmn:sequenceFlow id="SequenceFlow_10cy2nu" sourceRef="ServiceTask_1cm8iwr" targetRef="ScriptTask_0a98d9a" />
135 <bpmn:scriptTask id="ScriptTask_1toiss1" name="Create progress update parameters After Activate" scriptFormat="groovy">
136 <bpmn:incoming>SequenceFlow_0s3vc50</bpmn:incoming>
137 <bpmn:outgoing>SequenceFlow_05adaey</bpmn:outgoing>
138 <bpmn:script><![CDATA[import org.onap.so.bpmn.infrastructure.scripts.*
139def dcsi = new CreateActivateSDNCResource()
140dcsi.prepareUpdateAfterActivateSDNCResource(execution)]]></bpmn:script>
141 </bpmn:scriptTask>
142 <bpmn:serviceTask id="ServiceTask_10e6vjg" name="update progress update">
143 <bpmn:extensionElements>
144 <camunda:connector>
145 <camunda:inputOutput>
146 <camunda:inputParameter name="url">${CVFMI_dbAdapterEndpoint}</camunda:inputParameter>
147 <camunda:inputParameter name="headers">
148 <camunda:map>
149 <camunda:entry key="content-type">application/soap+xml</camunda:entry>
subhash kumar singh0578fc42018-11-15 12:27:09 +0530150 <camunda:entry key="Authorization">Basic YnBlbDpwYXNzd29yZDEk</camunda:entry>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400151 </camunda:map>
152 </camunda:inputParameter>
153 <camunda:inputParameter name="payload">${CVFMI_updateResOperStatusRequest}</camunda:inputParameter>
154 <camunda:inputParameter name="method">POST</camunda:inputParameter>
155 <camunda:outputParameter name="CVFMI_dbResponseCode">${statusCode}</camunda:outputParameter>
156 <camunda:outputParameter name="CVFMI_dbResponse">${response}</camunda:outputParameter>
157 </camunda:inputOutput>
158 <camunda:connectorId>http-connector</camunda:connectorId>
159 </camunda:connector>
160 </bpmn:extensionElements>
161 <bpmn:incoming>SequenceFlow_05adaey</bpmn:incoming>
162 <bpmn:outgoing>SequenceFlow_1afu5al</bpmn:outgoing>
163 </bpmn:serviceTask>
164 <bpmn:sequenceFlow id="SequenceFlow_05adaey" sourceRef="ScriptTask_1toiss1" targetRef="ServiceTask_10e6vjg" />
165 <bpmn:sequenceFlow id="SequenceFlow_1afu5al" sourceRef="ServiceTask_10e6vjg" targetRef="Task_023hred" />
166 <bpmn:callActivity id="CallActivity_0pr0s2y" name="Call SDNC RSRCActivate&#10; Adapter V1&#10;" calledElement="sdncAdapter">
167 <bpmn:extensionElements>
168 <camunda:in source="CRESDNCRES_activateSDNCRequest" target="sdncAdapterWorkflowRequest" />
169 <camunda:in source="mso-request-id" target="mso-request-id" />
170 <camunda:in source="mso-service-instance-id" target="mso-service-instance-id" />
171 <camunda:out source="sdncAdapterResponse" target="sdncAdapterResponse" />
172 <camunda:out source="SDNCA_ResponseCode" target="SDNCA_ResponseCode" />
173 <camunda:out source="SDNCA_SuccessIndicator" target="SDNCA_SuccessIndicator" />
174 <camunda:out source="WorkflowException" target="WorkflowException" />
175 <camunda:in source="sdncAdapterWorkflowRequest" target="sdncAdapterWorkflowRequest" />
176 </bpmn:extensionElements>
177 <bpmn:incoming>SequenceFlow_0rp0tdn</bpmn:incoming>
178 <bpmn:outgoing>SequenceFlow_1efgf9m</bpmn:outgoing>
179 </bpmn:callActivity>
180 <bpmn:sequenceFlow id="SequenceFlow_1efgf9m" sourceRef="CallActivity_0pr0s2y" targetRef="Task_0p200y6" />
181 <bpmn:sequenceFlow id="SequenceFlow_0ruppyi" sourceRef="Task_0mszkkr" targetRef="Task_0uwlr22" />
182 <bpmn:scriptTask id="Task_0mszkkr" name="post create SDNC call" scriptFormat="groovy">
183 <bpmn:incoming>SequenceFlow_1xk5xed</bpmn:incoming>
184 <bpmn:outgoing>SequenceFlow_0ruppyi</bpmn:outgoing>
185 <bpmn:script><![CDATA[import org.onap.so.bpmn.infrastructure.scripts.*
186def dcsi = new CreateActivateSDNCResource()
187dcsi.postCreateSDNC(execution)]]></bpmn:script>
188 </bpmn:scriptTask>
189 <bpmn:scriptTask id="Task_0p200y6" name="post activate SDNC call" scriptFormat="groovy">
190 <bpmn:incoming>SequenceFlow_1efgf9m</bpmn:incoming>
191 <bpmn:outgoing>SequenceFlow_0s3vc50</bpmn:outgoing>
192 <bpmn:script><![CDATA[import org.onap.so.bpmn.infrastructure.scripts.*
193def dcsi = new CreateActivateSDNCResource()
194dcsi.postActivateSDNC(execution)]]></bpmn:script>
195 </bpmn:scriptTask>
196 <bpmn:sequenceFlow id="SequenceFlow_0s3vc50" sourceRef="Task_0p200y6" targetRef="ScriptTask_1toiss1" />
197 <bpmn:sequenceFlow id="SequenceFlow_0rp0tdn" sourceRef="ScriptTask_0a98d9a" targetRef="CallActivity_0pr0s2y" />
198 </bpmn:process>
199 <bpmndi:BPMNDiagram id="BPMNDiagram_1">
200 <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="CreateActivateSDNCResource">
201 <bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="createSDNCRES_StartEvent">
202 <dc:Bounds x="-111" y="111" width="36" height="36" />
203 <bpmndi:BPMNLabel>
204 <dc:Bounds x="-134" y="147" width="85" height="28" />
205 </bpmndi:BPMNLabel>
206 </bpmndi:BPMNShape>
207 <bpmndi:BPMNEdge id="SequenceFlow_1qo2pln_di" bpmnElement="SequenceFlow_1qo2pln">
208 <di:waypoint xsi:type="dc:Point" x="-75" y="129" />
209 <di:waypoint xsi:type="dc:Point" x="-10" y="129" />
210 <bpmndi:BPMNLabel>
211 <dc:Bounds x="-87.5" y="108" width="90" height="12" />
212 </bpmndi:BPMNLabel>
213 </bpmndi:BPMNEdge>
214 <bpmndi:BPMNEdge id="SequenceFlow_0khtova_di" bpmnElement="SequenceFlow_0khtova">
215 <di:waypoint xsi:type="dc:Point" x="413" y="129" />
216 <di:waypoint xsi:type="dc:Point" x="460" y="129" />
217 <di:waypoint xsi:type="dc:Point" x="500" y="129" />
218 <bpmndi:BPMNLabel>
219 <dc:Bounds x="391.5" y="108" width="90" height="12" />
220 </bpmndi:BPMNLabel>
221 </bpmndi:BPMNEdge>
222 <bpmndi:BPMNShape id="ScriptTask_03j6ogo_di" bpmnElement="PreprocessIncomingRequest_task">
223 <dc:Bounds x="313" y="89" width="100" height="80" />
224 </bpmndi:BPMNShape>
225 <bpmndi:BPMNShape id="EndEvent_15pcuuc_di" bpmnElement="EndEvent_1x6k78c">
226 <dc:Bounds x="1049" y="544" width="36" height="36" />
227 <bpmndi:BPMNLabel>
228 <dc:Bounds x="1013" y="586" width="81" height="28" />
229 </bpmndi:BPMNLabel>
230 </bpmndi:BPMNShape>
231 <bpmndi:BPMNShape id="CallActivity_1600xlj_di" bpmnElement="CallActivity_1600xlj">
232 <dc:Bounds x="109" y="295" width="100" height="80" />
233 </bpmndi:BPMNShape>
234 <bpmndi:BPMNEdge id="SequenceFlow_1xk5xed_di" bpmnElement="SequenceFlow_1xk5xed">
235 <di:waypoint xsi:type="dc:Point" x="209" y="335" />
236 <di:waypoint xsi:type="dc:Point" x="257" y="335" />
237 <bpmndi:BPMNLabel>
238 <dc:Bounds x="188" y="314" width="90" height="12" />
239 </bpmndi:BPMNLabel>
240 </bpmndi:BPMNEdge>
241 <bpmndi:BPMNEdge id="SequenceFlow_0ow44q0_di" bpmnElement="SequenceFlow_0ow44q0">
242 <di:waypoint xsi:type="dc:Point" x="896" y="562" />
243 <di:waypoint xsi:type="dc:Point" x="915" y="562" />
244 <bpmndi:BPMNLabel>
245 <dc:Bounds x="860.5" y="541" width="90" height="12" />
246 </bpmndi:BPMNLabel>
247 </bpmndi:BPMNEdge>
248 <bpmndi:BPMNShape id="ScriptTask_0gyej62_di" bpmnElement="Task_023hred">
249 <dc:Bounds x="796" y="522" width="100" height="80" />
250 </bpmndi:BPMNShape>
251 <bpmndi:BPMNEdge id="SequenceFlow_0w2es8j_di" bpmnElement="SequenceFlow_0w2es8j">
252 <di:waypoint xsi:type="dc:Point" x="90" y="129" />
253 <di:waypoint xsi:type="dc:Point" x="148" y="129" />
254 <bpmndi:BPMNLabel>
255 <dc:Bounds x="74" y="108" width="90" height="12" />
256 </bpmndi:BPMNLabel>
257 </bpmndi:BPMNEdge>
258 <bpmndi:BPMNEdge id="SequenceFlow_18l3crb_di" bpmnElement="SequenceFlow_18l3crb">
259 <di:waypoint xsi:type="dc:Point" x="248" y="129" />
260 <di:waypoint xsi:type="dc:Point" x="313" y="129" />
261 <bpmndi:BPMNLabel>
262 <dc:Bounds x="235.5" y="108" width="90" height="12" />
263 </bpmndi:BPMNLabel>
264 </bpmndi:BPMNEdge>
265 <bpmndi:BPMNShape id="ScriptTask_0lc6l7a_di" bpmnElement="Task_1dlrfiw">
266 <dc:Bounds x="-10" y="89" width="100" height="80" />
267 </bpmndi:BPMNShape>
268 <bpmndi:BPMNShape id="ScriptTask_14l9mlv_di" bpmnElement="Task_13sx2bp">
269 <dc:Bounds x="148" y="89" width="100" height="80" />
270 </bpmndi:BPMNShape>
271 <bpmndi:BPMNEdge id="SequenceFlow_1mz0vdx_di" bpmnElement="SequenceFlow_1mz0vdx">
272 <di:waypoint xsi:type="dc:Point" x="606" y="129" />
273 <di:waypoint xsi:type="dc:Point" x="638" y="129" />
274 <di:waypoint xsi:type="dc:Point" x="638" y="129" />
275 <di:waypoint xsi:type="dc:Point" x="738" y="129" />
276 <bpmndi:BPMNLabel>
277 <dc:Bounds x="608" y="123" width="90" height="12" />
278 </bpmndi:BPMNLabel>
279 </bpmndi:BPMNEdge>
280 <bpmndi:BPMNEdge id="SequenceFlow_15mvedq_di" bpmnElement="SequenceFlow_15mvedq">
281 <di:waypoint xsi:type="dc:Point" x="788" y="169" />
282 <di:waypoint xsi:type="dc:Point" x="788" y="218" />
283 <di:waypoint xsi:type="dc:Point" x="0" y="218" />
284 <di:waypoint xsi:type="dc:Point" x="0" y="335" />
285 <di:waypoint xsi:type="dc:Point" x="109" y="335" />
286 <bpmndi:BPMNLabel>
287 <dc:Bounds x="349" y="197" width="90" height="12" />
288 </bpmndi:BPMNLabel>
289 </bpmndi:BPMNEdge>
290 <bpmndi:BPMNShape id="ScriptTask_1kqf4ge_di" bpmnElement="Task_0tezqd4">
291 <dc:Bounds x="506" y="89" width="100" height="80" />
292 </bpmndi:BPMNShape>
293 <bpmndi:BPMNShape id="ScriptTask_0hu4lhm_di" bpmnElement="Task_0uwlr22">
294 <dc:Bounds x="426" y="295" width="100" height="80" />
295 </bpmndi:BPMNShape>
296 <bpmndi:BPMNShape id="ServiceTask_1q6ssz7_di" bpmnElement="Task_18tomkl">
297 <dc:Bounds x="738" y="89" width="100" height="80" />
298 </bpmndi:BPMNShape>
299 <bpmndi:BPMNShape id="ServiceTask_1cm8iwr_di" bpmnElement="ServiceTask_1cm8iwr">
300 <dc:Bounds x="588" y="295" width="100" height="80" />
301 </bpmndi:BPMNShape>
302 <bpmndi:BPMNEdge id="SequenceFlow_1jr6zi0_di" bpmnElement="SequenceFlow_1jr6zi0">
303 <di:waypoint xsi:type="dc:Point" x="526" y="335" />
304 <di:waypoint xsi:type="dc:Point" x="554" y="335" />
305 <di:waypoint xsi:type="dc:Point" x="554" y="335" />
306 <di:waypoint xsi:type="dc:Point" x="588" y="335" />
307 <bpmndi:BPMNLabel>
308 <dc:Bounds x="524" y="329" width="90" height="12" />
309 </bpmndi:BPMNLabel>
310 </bpmndi:BPMNEdge>
311 <bpmndi:BPMNShape id="ScriptTask_1g5zyi6_di" bpmnElement="ScriptTask_1g5zyi6">
312 <dc:Bounds x="915" y="522" width="100" height="80" />
313 </bpmndi:BPMNShape>
314 <bpmndi:BPMNEdge id="SequenceFlow_17md60u_di" bpmnElement="SequenceFlow_17md60u">
315 <di:waypoint xsi:type="dc:Point" x="1015" y="562" />
316 <di:waypoint xsi:type="dc:Point" x="1049" y="562" />
317 <bpmndi:BPMNLabel>
318 <dc:Bounds x="987" y="540" width="90" height="14" />
319 </bpmndi:BPMNLabel>
320 </bpmndi:BPMNEdge>
321 <bpmndi:BPMNShape id="ScriptTask_0a98d9a_di" bpmnElement="ScriptTask_0a98d9a">
322 <dc:Bounds x="-2" y="522" width="100" height="80" />
323 </bpmndi:BPMNShape>
324 <bpmndi:BPMNEdge id="SequenceFlow_10cy2nu_di" bpmnElement="SequenceFlow_10cy2nu">
325 <di:waypoint xsi:type="dc:Point" x="638" y="375" />
326 <di:waypoint xsi:type="dc:Point" x="638" y="435" />
327 <di:waypoint xsi:type="dc:Point" x="-33" y="435" />
328 <di:waypoint xsi:type="dc:Point" x="-33" y="562" />
329 <di:waypoint xsi:type="dc:Point" x="-2" y="562" />
330 <bpmndi:BPMNLabel>
331 <dc:Bounds x="302.5" y="413" width="0" height="14" />
332 </bpmndi:BPMNLabel>
333 </bpmndi:BPMNEdge>
334 <bpmndi:BPMNShape id="ScriptTask_1toiss1_di" bpmnElement="ScriptTask_1toiss1">
335 <dc:Bounds x="490" y="522" width="100" height="80" />
336 </bpmndi:BPMNShape>
337 <bpmndi:BPMNShape id="ServiceTask_10e6vjg_di" bpmnElement="ServiceTask_10e6vjg">
338 <dc:Bounds x="656" y="522" width="100" height="80" />
339 </bpmndi:BPMNShape>
340 <bpmndi:BPMNEdge id="SequenceFlow_05adaey_di" bpmnElement="SequenceFlow_05adaey">
341 <di:waypoint xsi:type="dc:Point" x="590" y="562" />
342 <di:waypoint xsi:type="dc:Point" x="656" y="562" />
343 <bpmndi:BPMNLabel>
344 <dc:Bounds x="623" y="540" width="0" height="14" />
345 </bpmndi:BPMNLabel>
346 </bpmndi:BPMNEdge>
347 <bpmndi:BPMNEdge id="SequenceFlow_1afu5al_di" bpmnElement="SequenceFlow_1afu5al">
348 <di:waypoint xsi:type="dc:Point" x="756" y="562" />
349 <di:waypoint xsi:type="dc:Point" x="796" y="562" />
350 <bpmndi:BPMNLabel>
351 <dc:Bounds x="776" y="540" width="0" height="14" />
352 </bpmndi:BPMNLabel>
353 </bpmndi:BPMNEdge>
354 <bpmndi:BPMNShape id="CallActivity_0pr0s2y_di" bpmnElement="CallActivity_0pr0s2y">
355 <dc:Bounds x="178" y="522" width="100" height="80" />
356 </bpmndi:BPMNShape>
357 <bpmndi:BPMNEdge id="SequenceFlow_1efgf9m_di" bpmnElement="SequenceFlow_1efgf9m">
358 <di:waypoint xsi:type="dc:Point" x="278" y="562" />
359 <di:waypoint xsi:type="dc:Point" x="336" y="562" />
360 <bpmndi:BPMNLabel>
361 <dc:Bounds x="307" y="540" width="0" height="14" />
362 </bpmndi:BPMNLabel>
363 </bpmndi:BPMNEdge>
364 <bpmndi:BPMNEdge id="SequenceFlow_0ruppyi_di" bpmnElement="SequenceFlow_0ruppyi">
365 <di:waypoint xsi:type="dc:Point" x="357" y="335" />
366 <di:waypoint xsi:type="dc:Point" x="426" y="335" />
367 <bpmndi:BPMNLabel>
368 <dc:Bounds x="391.5" y="313" width="0" height="14" />
369 </bpmndi:BPMNLabel>
370 </bpmndi:BPMNEdge>
371 <bpmndi:BPMNShape id="ScriptTask_13eovp4_di" bpmnElement="Task_0mszkkr">
372 <dc:Bounds x="257" y="295" width="100" height="80" />
373 </bpmndi:BPMNShape>
374 <bpmndi:BPMNShape id="ScriptTask_0ymnxuf_di" bpmnElement="Task_0p200y6">
375 <dc:Bounds x="336" y="522" width="100" height="80" />
376 </bpmndi:BPMNShape>
377 <bpmndi:BPMNEdge id="SequenceFlow_0s3vc50_di" bpmnElement="SequenceFlow_0s3vc50">
378 <di:waypoint xsi:type="dc:Point" x="436" y="562" />
379 <di:waypoint xsi:type="dc:Point" x="490" y="562" />
380 <bpmndi:BPMNLabel>
381 <dc:Bounds x="463" y="540" width="0" height="14" />
382 </bpmndi:BPMNLabel>
383 </bpmndi:BPMNEdge>
384 <bpmndi:BPMNEdge id="SequenceFlow_0rp0tdn_di" bpmnElement="SequenceFlow_0rp0tdn">
385 <di:waypoint xsi:type="dc:Point" x="98" y="562" />
386 <di:waypoint xsi:type="dc:Point" x="178" y="562" />
387 <bpmndi:BPMNLabel>
388 <dc:Bounds x="138" y="540" width="0" height="14" />
389 </bpmndi:BPMNLabel>
390 </bpmndi:BPMNEdge>
391 </bpmndi:BPMNPlane>
392 </bpmndi:BPMNDiagram>
393</bpmn:definitions>