Merge "added fragment support to generated objects"
[so.git] / bpmn / so-bpmn-infrastructure-flows / src / main / resources / subprocess / DoUpdateNetworkInstance.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" id="_MagIIMOUEeW8asg-vCEgWQ" targetNamespace="http://camunda.org/schema/1.0/bpmn" exporter="Camunda Modeler" exporterVersion="3.7.0" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL BPMN20.xsd">
3   <bpmn2:process id="DoUpdateNetworkInstance" name="DoUpdateNetworkInstance" isExecutable="true">
4     <bpmn2:startEvent id="updateNetwork_startEvent" name="Start Flow">
5       <bpmn2:outgoing>SequenceFlow_1</bpmn2:outgoing>
6     </bpmn2:startEvent>
7     <bpmn2:sequenceFlow id="SequenceFlow_1" name="" sourceRef="updateNetwork_startEvent" targetRef="preProcessRequest_ScriptTask" />
8     <bpmn2:scriptTask id="prepareSDNCTopoRequest_ScriptTask" name="Prepare SDNC Topology Request" scriptFormat="groovy">
9       <bpmn2:incoming>SequenceFlow_32</bpmn2:incoming>
10       <bpmn2:outgoing>SequenceFlow_11</bpmn2:outgoing>
11       <bpmn2:script>import org.onap.so.bpmn.infrastructure.scripts.*
12 def DoUpdateNetworkInstance = new DoUpdateNetworkInstance()
13 DoUpdateNetworkInstance.prepareSDNCRequest(execution)
14 </bpmn2:script>
15     </bpmn2:scriptTask>
16     <bpmn2:sequenceFlow id="SequenceFlow_11" name="" sourceRef="prepareSDNCTopoRequest_ScriptTask" targetRef="callAssignSDNCAdapter_CallActivity" />
17     <bpmn2:scriptTask id="validateSDNCResponse_ScriptTask" name="Validate SDNC Response" scriptFormat="groovy">
18       <bpmn2:incoming>SequenceFlow_12</bpmn2:incoming>
19       <bpmn2:outgoing>SequenceFlow_5</bpmn2:outgoing>
20       <bpmn2:script>import org.onap.so.bpmn.infrastructure.scripts.*
21 def DoUpdateNetworkInstance = new DoUpdateNetworkInstance()
22 DoUpdateNetworkInstance.validateSDNCResponse(execution)</bpmn2:script>
23     </bpmn2:scriptTask>
24     <bpmn2:exclusiveGateway id="isSdncTopoOk_ExclusiveGateway" name="Is SDNC Ok?" default="sdncTopoNo_SequenceFlow">
25       <bpmn2:incoming>SequenceFlow_5</bpmn2:incoming>
26       <bpmn2:outgoing>sdncTopoNo_SequenceFlow</bpmn2:outgoing>
27       <bpmn2:outgoing>sdncTopoYes_SequenceFlow</bpmn2:outgoing>
28     </bpmn2:exclusiveGateway>
29     <bpmn2:sequenceFlow id="sdncTopoNo_SequenceFlow" name="No" sourceRef="isSdncTopoOk_ExclusiveGateway" targetRef="sndcError_EndEvent" />
30     <bpmn2:sequenceFlow id="sdncTopoYes_SequenceFlow" name="Yes" sourceRef="isSdncTopoOk_ExclusiveGateway" targetRef="callRESTReQuery1NetworkID_ScriptTask">
31       <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression">#{execution.getVariable("UPDNETI_sdncResponseSuccess" ) == true}</bpmn2:conditionExpression>
32     </bpmn2:sequenceFlow>
33     <bpmn2:sequenceFlow id="SequenceFlow_5" name="" sourceRef="validateSDNCResponse_ScriptTask" targetRef="isSdncTopoOk_ExclusiveGateway" />
34     <bpmn2:boundaryEvent id="BoundaryEvent_4" name="" attachedToRef="validateSDNCResponse_ScriptTask">
35       <bpmn2:outgoing>SequenceFlow_34</bpmn2:outgoing>
36       <bpmn2:errorEventDefinition id="_ErrorEventDefinition_84" errorRef="Error_2" />
37     </bpmn2:boundaryEvent>
38     <bpmn2:sequenceFlow id="SequenceFlow_34" name="" sourceRef="BoundaryEvent_4" targetRef="sndcError_EndEvent" />
39     <bpmn2:endEvent id="sndcError_EndEvent" name="SNDC Error">
40       <bpmn2:incoming>sdncTopoNo_SequenceFlow</bpmn2:incoming>
41       <bpmn2:incoming>SequenceFlow_34</bpmn2:incoming>
42       <bpmn2:errorEventDefinition id="_ErrorEventDefinition_57" errorRef="Error_2" />
43     </bpmn2:endEvent>
44     <bpmn2:callActivity id="callAssignSDNCAdapter_CallActivity" name="Call SDNC ChangeAssign Adapter V1 Sub-process" calledElement="sdncAdapter">
45       <bpmn2:extensionElements>
46         <camunda:in source="UPDNETI_changeAssignSDNCRequest" target="sdncAdapterWorkflowRequest" />
47         <camunda:out source="sdncAdapterResponse" target="UPDNETI_changeAssignSDNCResponse" />
48         <camunda:out source="SDNCA_ResponseCode" target="UPDNETI_sdncReturnCode" />
49         <camunda:in source="mso-request-id" target="mso-request-id" />
50         <camunda:in source="mso-service-instance-id" target="mso-service-instance-id" />
51         <camunda:out source="WorkflowException" target="UPDNETI_WorkflowException" />
52         <camunda:out source="SDNCA_SuccessIndicator" target="SDNCA_SuccessIndicator" />
53         <camunda:in variables="all" />
54       </bpmn2:extensionElements>
55       <bpmn2:incoming>SequenceFlow_11</bpmn2:incoming>
56       <bpmn2:outgoing>SequenceFlow_12</bpmn2:outgoing>
57     </bpmn2:callActivity>
58     <bpmn2:sequenceFlow id="SequenceFlow_12" name="" sourceRef="callAssignSDNCAdapter_CallActivity" targetRef="validateSDNCResponse_ScriptTask" />
59     <bpmn2:scriptTask id="postProcessAndCompletionRequest_ScriptTask" name="Post Process Response" scriptFormat="groovy">
60       <bpmn2:incoming>SequenceFlow_46</bpmn2:incoming>
61       <bpmn2:outgoing>SequenceFlow_29</bpmn2:outgoing>
62       <bpmn2:script>import org.onap.so.bpmn.infrastructure.scripts.*
63 def DoUpdateNetworkInstance = new DoUpdateNetworkInstance()
64 DoUpdateNetworkInstance.postProcessResponse(execution)</bpmn2:script>
65     </bpmn2:scriptTask>
66     <bpmn2:sequenceFlow id="SequenceFlow_29" name="" sourceRef="postProcessAndCompletionRequest_ScriptTask" targetRef="EndEvent_3" />
67     <bpmn2:subProcess id="subProcessException_SubProcess" name="Subprocess For Exception" triggeredByEvent="true">
68       <bpmn2:exclusiveGateway id="isRollbackOn_Network_ExclusiveGateway" name="Is Rollback On?" default="isRollbackOn_NoNetwork_SequenceFlow">
69         <bpmn2:incoming>SequenceFlow_053re4q</bpmn2:incoming>
70         <bpmn2:outgoing>isRollbackOn_YesNetwork_SequenceFlow</bpmn2:outgoing>
71         <bpmn2:outgoing>isRollbackOn_NoNetwork_SequenceFlow</bpmn2:outgoing>
72       </bpmn2:exclusiveGateway>
73       <bpmn2:sequenceFlow id="isRollbackOn_YesNetwork_SequenceFlow" name="Yes" sourceRef="isRollbackOn_Network_ExclusiveGateway" targetRef="isPONR_ExclusiveGateway">
74         <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression">#{execution.getVariable("UPDNETI_rollbackEnabled") == true}</bpmn2:conditionExpression>
75       </bpmn2:sequenceFlow>
76       <bpmn2:sequenceFlow id="isRollbackOn_NoNetwork_SequenceFlow" name="No" sourceRef="isRollbackOn_Network_ExclusiveGateway" targetRef="ExclusiveGateway_1dcb5p2" />
77       <bpmn2:startEvent id="subProcessStart_StartEvent" name="Fault Start">
78         <bpmn2:outgoing>SequenceFlow_23</bpmn2:outgoing>
79         <bpmn2:errorEventDefinition id="ErrorEventDefinition_1" errorRef="Error_2" />
80       </bpmn2:startEvent>
81       <bpmn2:sequenceFlow id="SequenceFlow_23" name="" sourceRef="subProcessStart_StartEvent" targetRef="ScriptTask_1gedbow" />
82       <bpmn2:exclusiveGateway id="isPONR_ExclusiveGateway" name="isPONR?" default="isPONR_No_SequenceFlow">
83         <bpmn2:incoming>isRollbackOn_YesNetwork_SequenceFlow</bpmn2:incoming>
84         <bpmn2:outgoing>isPONR_Yes_SequenceFlow</bpmn2:outgoing>
85         <bpmn2:outgoing>isPONR_No_SequenceFlow</bpmn2:outgoing>
86       </bpmn2:exclusiveGateway>
87       <bpmn2:sequenceFlow id="isPONR_Yes_SequenceFlow" name="Yes" sourceRef="isPONR_ExclusiveGateway" targetRef="ExclusiveGateway_1dcb5p2">
88         <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression">#{execution.getVariable("UPDNETI_isPONR") == true}</bpmn2:conditionExpression>
89       </bpmn2:sequenceFlow>
90       <bpmn2:sequenceFlow id="isPONR_No_SequenceFlow" name="No" sourceRef="isPONR_ExclusiveGateway" targetRef="ExclusiveGateway_1dcb5p2" />
91       <bpmn2:exclusiveGateway id="sdncOk_ExclusiveGateway" name="is Sdnc Ok?" default="sdncOk_No_ExclusiveGateway">
92         <bpmn2:incoming>SequenceFlow_0nrc66n</bpmn2:incoming>
93         <bpmn2:outgoing>sdncOk_Yeso_ExclusiveGateway</bpmn2:outgoing>
94         <bpmn2:outgoing>sdncOk_No_ExclusiveGateway</bpmn2:outgoing>
95       </bpmn2:exclusiveGateway>
96       <bpmn2:sequenceFlow id="sdncOk_Yeso_ExclusiveGateway" name="Yes" sourceRef="sdncOk_ExclusiveGateway" targetRef="prepareSDNCRollbackRequest_ScriptTask">
97         <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression">#{execution.getVariable("UPDNETI_isSdncRollbackNeeded" ) == true}</bpmn2:conditionExpression>
98       </bpmn2:sequenceFlow>
99       <bpmn2:sequenceFlow id="sdncOk_No_ExclusiveGateway" name="No" sourceRef="sdncOk_ExclusiveGateway" targetRef="InclusiveGateway_6" />
100       <bpmn2:scriptTask id="prepareSDNCRollbackRequest_ScriptTask" name="Prepare SDNCRollback Request" scriptFormat="groovy">
101         <bpmn2:incoming>sdncOk_Yeso_ExclusiveGateway</bpmn2:incoming>
102         <bpmn2:outgoing>SequenceFlow_53</bpmn2:outgoing>
103         <bpmn2:script>import org.onap.so.bpmn.infrastructure.scripts.*
104 def DoUpdateNetworkInstance = new DoUpdateNetworkInstance()
105 DoUpdateNetworkInstance.prepareSDNCRollbackRequest(execution)</bpmn2:script>
106       </bpmn2:scriptTask>
107       <bpmn2:sequenceFlow id="SequenceFlow_53" name="" sourceRef="prepareSDNCRollbackRequest_ScriptTask" targetRef="InclusiveGateway_6" />
108       <bpmn2:endEvent id="EndEvent_4">
109         <bpmn2:incoming>SequenceFlow_04rdjfi</bpmn2:incoming>
110       </bpmn2:endEvent>
111       <bpmn2:inclusiveGateway id="InclusiveGateway_6">
112         <bpmn2:incoming>SequenceFlow_53</bpmn2:incoming>
113         <bpmn2:incoming>sdncOk_No_ExclusiveGateway</bpmn2:incoming>
114         <bpmn2:incoming>SequenceFlow_0srdlf3</bpmn2:incoming>
115         <bpmn2:outgoing>SequenceFlow_47</bpmn2:outgoing>
116       </bpmn2:inclusiveGateway>
117       <bpmn2:sequenceFlow id="SequenceFlow_47" name="" sourceRef="InclusiveGateway_6" targetRef="ScriptTask_1p6n2yy" />
118       <bpmn2:scriptTask id="ScriptTask_1p6n2yy" name="Prepare RollbackData" scriptFormat="groovy">
119         <bpmn2:incoming>SequenceFlow_47</bpmn2:incoming>
120         <bpmn2:script>import org.onap.so.bpmn.infrastructure.scripts.*
121 def DoUpdateNetworkInstance = new DoUpdateNetworkInstance()
122 DoUpdateNetworkInstance.prepareRollbackData(execution)</bpmn2:script>
123       </bpmn2:scriptTask>
124       <bpmn2:scriptTask id="ScriptTask_0voqz6r" name="Post Process Response" scriptFormat="groovy">
125         <bpmn2:incoming>SequenceFlow_0ze5k6c</bpmn2:incoming>
126         <bpmn2:outgoing>SequenceFlow_04rdjfi</bpmn2:outgoing>
127         <bpmn2:script>import org.onap.so.bpmn.infrastructure.scripts.*
128 def DoUpdateNetworkInstance = new DoUpdateNetworkInstance()
129 DoUpdateNetworkInstance.postProcessResponse(execution)</bpmn2:script>
130       </bpmn2:scriptTask>
131       <bpmn2:sequenceFlow id="SequenceFlow_04rdjfi" sourceRef="ScriptTask_0voqz6r" targetRef="EndEvent_4" />
132       <bpmn2:exclusiveGateway id="ExclusiveGateway_1kjh92x" name="is &#39;1702&#39; SNDC Call?">
133         <bpmn2:outgoing>SequenceFlow_0nrc66n</bpmn2:outgoing>
134         <bpmn2:outgoing>SequenceFlow_0srdlf3</bpmn2:outgoing>
135       </bpmn2:exclusiveGateway>
136       <bpmn2:sequenceFlow id="SequenceFlow_0nrc66n" name="No" sourceRef="ExclusiveGateway_1kjh92x" targetRef="sdncOk_ExclusiveGateway" />
137       <bpmn2:sequenceFlow id="SequenceFlow_0srdlf3" name="Yes" sourceRef="ExclusiveGateway_1kjh92x" targetRef="InclusiveGateway_6">
138         <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression">#{execution.getVariable("sdncVersion") != '1610'} </bpmn2:conditionExpression>
139       </bpmn2:sequenceFlow>
140       <bpmn2:scriptTask id="ScriptTask_1gedbow" name="Set Exception Flag" scriptFormat="groovy">
141         <bpmn2:incoming>SequenceFlow_23</bpmn2:incoming>
142         <bpmn2:outgoing>SequenceFlow_053re4q</bpmn2:outgoing>
143         <bpmn2:script>import org.onap.so.bpmn.infrastructure.scripts.*
144 def DoUpdateNetworkInstance = new DoUpdateNetworkInstance()
145 DoUpdateNetworkInstance.setExceptionFlag(execution)</bpmn2:script>
146       </bpmn2:scriptTask>
147       <bpmn2:sequenceFlow id="SequenceFlow_053re4q" sourceRef="ScriptTask_1gedbow" targetRef="isRollbackOn_Network_ExclusiveGateway" />
148       <bpmn2:inclusiveGateway id="ExclusiveGateway_1dcb5p2">
149         <bpmn2:incoming>isPONR_Yes_SequenceFlow</bpmn2:incoming>
150         <bpmn2:incoming>isRollbackOn_NoNetwork_SequenceFlow</bpmn2:incoming>
151         <bpmn2:incoming>isPONR_No_SequenceFlow</bpmn2:incoming>
152         <bpmn2:outgoing>SequenceFlow_0ze5k6c</bpmn2:outgoing>
153       </bpmn2:inclusiveGateway>
154       <bpmn2:sequenceFlow id="SequenceFlow_0ze5k6c" sourceRef="ExclusiveGateway_1dcb5p2" targetRef="ScriptTask_0voqz6r" />
155     </bpmn2:subProcess>
156     <bpmn2:scriptTask id="callRESTReQuery2NetworkID_ScriptTask" name="Call REST ReQuery2 Network Id in AAI" scriptFormat="groovy">
157       <bpmn2:incoming>Flow_1eutzkj</bpmn2:incoming>
158       <bpmn2:outgoing>SequenceFlow_35</bpmn2:outgoing>
159       <bpmn2:script>import org.onap.so.bpmn.infrastructure.scripts.*
160 def DoUpdateNetworkInstance = new DoUpdateNetworkInstance()
161 DoUpdateNetworkInstance.callRESTReQueryAAINetworkId(execution)</bpmn2:script>
162     </bpmn2:scriptTask>
163     <bpmn2:sequenceFlow id="SequenceFlow_35" name="" sourceRef="callRESTReQuery2NetworkID_ScriptTask" targetRef="callRESTUpdateContrailNetwork_ScriptTask" />
164     <bpmn2:scriptTask id="callRESTUpdateContrailNetwork_ScriptTask" name="Call REST Update Contrail Network in AAI" scriptFormat="groovy">
165       <bpmn2:incoming>SequenceFlow_35</bpmn2:incoming>
166       <bpmn2:outgoing>SequenceFlow_46</bpmn2:outgoing>
167       <bpmn2:script>import org.onap.so.bpmn.infrastructure.scripts.*
168 def DoUpdateNetworkInstance = new DoUpdateNetworkInstance()
169 DoUpdateNetworkInstance.callRESTUpdateContrailAAINetwork(execution)</bpmn2:script>
170     </bpmn2:scriptTask>
171     <bpmn2:sequenceFlow id="SequenceFlow_46" name="PONR" sourceRef="callRESTUpdateContrailNetwork_ScriptTask" targetRef="postProcessAndCompletionRequest_ScriptTask" />
172     <bpmn2:endEvent id="EndEvent_3">
173       <bpmn2:incoming>SequenceFlow_29</bpmn2:incoming>
174     </bpmn2:endEvent>
175     <bpmn2:subProcess id="unexpectedErrors_SubProcess" name="Sub-process for UnexpectedErrors" triggeredByEvent="true">
176       <bpmn2:scriptTask id="ScriptTask_1" name="Log / Print Unexpected Error" scriptFormat="groovy">
177         <bpmn2:incoming>SequenceFlow_10</bpmn2:incoming>
178         <bpmn2:outgoing>SequenceFlow_14</bpmn2:outgoing>
179         <bpmn2:script>import org.onap.so.bpmn.infrastructure.scripts.*
180 def DoUpdateNetworkInstance = new DoUpdateNetworkInstance()
181 DoUpdateNetworkInstance.processJavaException(execution)</bpmn2:script>
182       </bpmn2:scriptTask>
183       <bpmn2:sequenceFlow id="SequenceFlow_14" name="" sourceRef="ScriptTask_1" targetRef="EndEvent_1" />
184       <bpmn2:startEvent id="StartEvent_1">
185         <bpmn2:outgoing>SequenceFlow_10</bpmn2:outgoing>
186         <bpmn2:errorEventDefinition id="ErrorEventDefinition_2" errorRef="Error_1" />
187       </bpmn2:startEvent>
188       <bpmn2:sequenceFlow id="SequenceFlow_10" name="" sourceRef="StartEvent_1" targetRef="ScriptTask_1" />
189       <bpmn2:endEvent id="EndEvent_1">
190         <bpmn2:incoming>SequenceFlow_14</bpmn2:incoming>
191       </bpmn2:endEvent>
192     </bpmn2:subProcess>
193     <bpmn2:scriptTask id="preProcessRequest_ScriptTask" name="PreProcess Incoming Request" scriptFormat="groovy">
194       <bpmn2:incoming>SequenceFlow_1</bpmn2:incoming>
195       <bpmn2:outgoing>SequenceFlow_7</bpmn2:outgoing>
196       <bpmn2:script>import org.onap.so.bpmn.infrastructure.scripts.*
197 def DoUpdateNetworkInstance = new DoUpdateNetworkInstance()
198 DoUpdateNetworkInstance.preProcessRequest(execution)
199 </bpmn2:script>
200     </bpmn2:scriptTask>
201     <bpmn2:sequenceFlow id="SequenceFlow_7" name="" sourceRef="preProcessRequest_ScriptTask" targetRef="callGetServiceInstance" />
202     <bpmn2:scriptTask id="callRESTQueryCloudRegion_ScriptTask" name="Call REST Query Cloud Region " scriptFormat="groovy">
203       <bpmn2:incoming>SequenceFlow_24</bpmn2:incoming>
204       <bpmn2:outgoing>SequenceFlow_32</bpmn2:outgoing>
205       <bpmn2:script>import org.onap.so.bpmn.infrastructure.scripts.*
206 def DoUpdateNetworkInstance = new DoUpdateNetworkInstance()
207 DoUpdateNetworkInstance.callRESTQueryAAICloudRegion(execution)</bpmn2:script>
208     </bpmn2:scriptTask>
209     <bpmn2:sequenceFlow id="SequenceFlow_32" name="" sourceRef="callRESTQueryCloudRegion_ScriptTask" targetRef="prepareSDNCTopoRequest_ScriptTask" />
210     <bpmn2:scriptTask id="callRESTQueryNetworkId_ScriptTask" name="Call REST Query Network Id In AAI" scriptFormat="groovy">
211       <bpmn2:incoming>SequenceFlow_3</bpmn2:incoming>
212       <bpmn2:outgoing>SequenceFlow_24</bpmn2:outgoing>
213       <bpmn2:script>import org.onap.so.bpmn.infrastructure.scripts.*
214 def DoUpdateNetworkInstance = new DoUpdateNetworkInstance()
215 DoUpdateNetworkInstance.callRESTQueryAAINetworkId(execution)</bpmn2:script>
216     </bpmn2:scriptTask>
217     <bpmn2:sequenceFlow id="SequenceFlow_24" name="" sourceRef="callRESTQueryNetworkId_ScriptTask" targetRef="callRESTQueryCloudRegion_ScriptTask" />
218     <bpmn2:sequenceFlow id="SequenceFlow_3" name="" sourceRef="callGetServiceInstance" targetRef="callRESTQueryNetworkId_ScriptTask" />
219     <bpmn2:scriptTask id="prepareNetworkRequest_ScriptTask" name="Prepare Create Network Request" scriptFormat="groovy">
220       <bpmn2:incoming>SequenceFlow_2</bpmn2:incoming>
221       <bpmn2:outgoing>SequenceFlow_61</bpmn2:outgoing>
222       <bpmn2:script>import org.onap.so.bpmn.infrastructure.scripts.*
223 def DoUpdateNetworkInstance = new DoUpdateNetworkInstance()
224 DoUpdateNetworkInstance.prepareUpdateNetworkRequest(execution)
225 </bpmn2:script>
226     </bpmn2:scriptTask>
227     <bpmn2:sequenceFlow id="SequenceFlow_61" name="" sourceRef="prepareNetworkRequest_ScriptTask" targetRef="openstackAdapterTask" />
228     <bpmn2:scriptTask id="callRESTQueryNetworkTableRef_ScriptTask" name="Call REST Query Network TableRef in AAI" scriptFormat="groovy">
229       <bpmn2:incoming>SequenceFlow_38</bpmn2:incoming>
230       <bpmn2:outgoing>SequenceFlow_2</bpmn2:outgoing>
231       <bpmn2:script>import org.onap.so.bpmn.infrastructure.scripts.*
232 def DoUpdateNetworkInstance = new DoUpdateNetworkInstance()
233 DoUpdateNetworkInstance.callRESTQueryAAINetworkTableRef(execution)</bpmn2:script>
234     </bpmn2:scriptTask>
235     <bpmn2:sequenceFlow id="SequenceFlow_2" name="" sourceRef="callRESTQueryNetworkTableRef_ScriptTask" targetRef="prepareNetworkRequest_ScriptTask" />
236     <bpmn2:scriptTask id="callRESTReQuery1NetworkID_ScriptTask" name="Call REST ReQuery1 Network Id in AAI" scriptFormat="groovy">
237       <bpmn2:incoming>sdncTopoYes_SequenceFlow</bpmn2:incoming>
238       <bpmn2:outgoing>SequenceFlow_6</bpmn2:outgoing>
239       <bpmn2:script>import org.onap.so.bpmn.infrastructure.scripts.*
240 def DoUpdateNetworkInstance = new DoUpdateNetworkInstance()
241 DoUpdateNetworkInstance.callRESTReQueryAAINetworkId(execution)</bpmn2:script>
242     </bpmn2:scriptTask>
243     <bpmn2:sequenceFlow id="SequenceFlow_6" name="" sourceRef="callRESTReQuery1NetworkID_ScriptTask" targetRef="callRESTQueryVpnBinding_ScriptTask" />
244     <bpmn2:scriptTask id="callRESTQueryVpnBinding_ScriptTask" name="Call REST Query Vpn Binding in AAI" scriptFormat="groovy">
245       <bpmn2:incoming>SequenceFlow_6</bpmn2:incoming>
246       <bpmn2:outgoing>SequenceFlow_15</bpmn2:outgoing>
247       <bpmn2:script>import org.onap.so.bpmn.infrastructure.scripts.*
248 def DoUpdateNetworkInstance = new DoUpdateNetworkInstance()
249 DoUpdateNetworkInstance.callRESTQueryAAINetworkVpnBinding(execution)</bpmn2:script>
250     </bpmn2:scriptTask>
251     <bpmn2:sequenceFlow id="SequenceFlow_15" name="" sourceRef="callRESTQueryVpnBinding_ScriptTask" targetRef="callRESTQueryNetworkPolicy_ScriptTask" />
252     <bpmn2:scriptTask id="callRESTQueryNetworkPolicy_ScriptTask" name="Call REST Query Network Policy in AAI" scriptFormat="groovy">
253       <bpmn2:incoming>SequenceFlow_15</bpmn2:incoming>
254       <bpmn2:outgoing>SequenceFlow_38</bpmn2:outgoing>
255       <bpmn2:script>import org.onap.so.bpmn.infrastructure.scripts.*
256 def DoUpdateNetworkInstance = new DoUpdateNetworkInstance()
257 DoUpdateNetworkInstance.callRESTQueryAAINetworkPolicy(execution)</bpmn2:script>
258     </bpmn2:scriptTask>
259     <bpmn2:sequenceFlow id="SequenceFlow_38" name="" sourceRef="callRESTQueryNetworkPolicy_ScriptTask" targetRef="callRESTQueryNetworkTableRef_ScriptTask" />
260     <bpmn2:scriptTask id="callGetServiceInstance" name="AAI&#10;Query&#10;(svc instance)" scriptFormat="groovy">
261       <bpmn2:incoming>SequenceFlow_7</bpmn2:incoming>
262       <bpmn2:outgoing>SequenceFlow_3</bpmn2:outgoing>
263       <bpmn2:script>import org.onap.so.bpmn.infrastructure.scripts.*
264 def DoUpdateNetworkInstance = new DoUpdateNetworkInstance()
265 DoUpdateNetworkInstance.getServiceInstance(execution)</bpmn2:script>
266     </bpmn2:scriptTask>
267     <bpmn2:callActivity id="openstackAdapterTask" name="openstack Adapter" calledElement="openstackAdapterTask">
268       <bpmn2:extensionElements>
269         <camunda:in source="UPDNETI_updateNetworkRequest" target="openstackAdapterTaskRequest" />
270         <camunda:out source="WorkflowException" target="WorkflowException" />
271         <camunda:out source="WorkflowResponse" target="UPDNETI_updateNetworkResponse" />
272       </bpmn2:extensionElements>
273       <bpmn2:incoming>SequenceFlow_61</bpmn2:incoming>
274       <bpmn2:outgoing>Flow_1eutzkj</bpmn2:outgoing>
275     </bpmn2:callActivity>
276     <bpmn2:sequenceFlow id="Flow_1eutzkj" sourceRef="openstackAdapterTask" targetRef="callRESTReQuery2NetworkID_ScriptTask" />
277   </bpmn2:process>
278   <bpmn2:error id="Error_2" name="MSOWorkflowException" errorCode="MSOWorkflowException" />
279   <bpmn2:error id="Error_1" name="java.lang.Exception" errorCode="java.lang.Exception" />
280   <bpmndi:BPMNDiagram id="BPMNDiagram_1">
281     <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="DoUpdateNetworkInstance">
282       <bpmndi:BPMNShape id="_BPMNShape_StartEvent_47" bpmnElement="updateNetwork_startEvent">
283         <dc:Bounds x="596" y="185" width="36" height="36" />
284         <bpmndi:BPMNLabel>
285           <dc:Bounds x="588" y="226" width="51" height="14" />
286         </bpmndi:BPMNLabel>
287       </bpmndi:BPMNShape>
288       <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_61" bpmnElement="preProcessRequest_ScriptTask">
289         <dc:Bounds x="782" y="163" width="100" height="80" />
290       </bpmndi:BPMNShape>
291       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_1" bpmnElement="SequenceFlow_1" sourceElement="_BPMNShape_StartEvent_47" targetElement="_BPMNShape_ScriptTask_61">
292         <di:waypoint x="632" y="203" />
293         <di:waypoint x="782" y="203" />
294         <bpmndi:BPMNLabel>
295           <dc:Bounds x="397" y="188" width="0" height="0" />
296         </bpmndi:BPMNLabel>
297       </bpmndi:BPMNEdge>
298       <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_67" bpmnElement="prepareSDNCTopoRequest_ScriptTask">
299         <dc:Bounds x="1829" y="100" width="100" height="80" />
300       </bpmndi:BPMNShape>
301       <bpmndi:BPMNShape id="_BPMNShape_SubProcess_16" bpmnElement="subProcessException_SubProcess" isExpanded="true">
302         <dc:Bounds x="157" y="594" width="1288" height="701" />
303       </bpmndi:BPMNShape>
304       <bpmndi:BPMNShape id="_BPMNShape_StartEvent_50" bpmnElement="subProcessStart_StartEvent">
305         <dc:Bounds x="207" y="1160" width="36" height="36" />
306         <bpmndi:BPMNLabel>
307           <dc:Bounds x="200" y="1201" width="52" height="14" />
308         </bpmndi:BPMNLabel>
309       </bpmndi:BPMNShape>
310       <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_67" bpmnElement="isSdncTopoOk_ExclusiveGateway" isMarkerVisible="true">
311         <dc:Bounds x="1854" y="521" width="50" height="50" />
312         <bpmndi:BPMNLabel>
313           <dc:Bounds x="1845" y="577" width="67" height="14" />
314         </bpmndi:BPMNLabel>
315       </bpmndi:BPMNShape>
316       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_26" bpmnElement="sdncTopoNo_SequenceFlow" sourceElement="_BPMNShape_ExclusiveGateway_67" targetElement="_BPMNShape_EndEvent_124">
317         <di:waypoint x="1904" y="546" />
318         <di:waypoint x="1992" y="546" />
319         <bpmndi:BPMNLabel>
320           <dc:Bounds x="1910" y="547" width="15" height="14" />
321         </bpmndi:BPMNLabel>
322       </bpmndi:BPMNEdge>
323       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_28" bpmnElement="sdncTopoYes_SequenceFlow" sourceElement="_BPMNShape_ExclusiveGateway_67" targetElement="_BPMNShape_ScriptTask_336">
324         <di:waypoint x="1854" y="546" />
325         <di:waypoint x="1703" y="546" />
326         <di:waypoint x="1703" y="576" />
327         <bpmndi:BPMNLabel>
328           <dc:Bounds x="1836" y="546" width="18" height="14" />
329         </bpmndi:BPMNLabel>
330       </bpmndi:BPMNEdge>
331       <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_80" bpmnElement="postProcessAndCompletionRequest_ScriptTask">
332         <dc:Bounds x="1053" y="1390" width="100" height="80" />
333       </bpmndi:BPMNShape>
334       <bpmndi:BPMNShape id="_BPMNShape_EndEvent_124" bpmnElement="sndcError_EndEvent">
335         <dc:Bounds x="1992" y="528" width="36" height="36" />
336         <bpmndi:BPMNLabel>
337           <dc:Bounds x="1980" y="569" width="61" height="14" />
338         </bpmndi:BPMNLabel>
339       </bpmndi:BPMNShape>
340       <bpmndi:BPMNShape id="_BPMNShape_CallActivity_19" bpmnElement="callAssignSDNCAdapter_CallActivity">
341         <dc:Bounds x="1829" y="242" width="100" height="80" />
342       </bpmndi:BPMNShape>
343       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_24" bpmnElement="SequenceFlow_11" sourceElement="_BPMNShape_ScriptTask_67" targetElement="_BPMNShape_CallActivity_19">
344         <di:waypoint x="1879" y="180" />
345         <di:waypoint x="1879" y="242" />
346         <bpmndi:BPMNLabel>
347           <dc:Bounds x="1584" y="211" width="0" height="0" />
348         </bpmndi:BPMNLabel>
349       </bpmndi:BPMNEdge>
350       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_29" bpmnElement="SequenceFlow_12" sourceElement="_BPMNShape_CallActivity_19" targetElement="_BPMNShape_ScriptTask_131">
351         <di:waypoint x="1879" y="322" />
352         <di:waypoint x="1879" y="373" />
353         <bpmndi:BPMNLabel>
354           <dc:Bounds x="1584" y="347.5" width="0" height="0" />
355         </bpmndi:BPMNLabel>
356       </bpmndi:BPMNEdge>
357       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_12" bpmnElement="SequenceFlow_7" sourceElement="_BPMNShape_ScriptTask_61">
358         <di:waypoint x="882" y="203" />
359         <di:waypoint x="996" y="203" />
360         <bpmndi:BPMNLabel>
361           <dc:Bounds x="584" y="188" width="90" height="0" />
362         </bpmndi:BPMNLabel>
363       </bpmndi:BPMNEdge>
364       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_35" bpmnElement="SequenceFlow_23" sourceElement="_BPMNShape_StartEvent_50" targetElement="ScriptTask_1gedbow_di">
365         <di:waypoint x="243" y="1178" />
366         <di:waypoint x="270" y="1178" />
367         <di:waypoint x="299" y="1178" />
368         <bpmndi:BPMNLabel>
369           <dc:Bounds x="-53" y="1163" width="0" height="0" />
370         </bpmndi:BPMNLabel>
371       </bpmndi:BPMNEdge>
372       <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_131" bpmnElement="validateSDNCResponse_ScriptTask">
373         <dc:Bounds x="1829" y="373" width="100" height="80" />
374       </bpmndi:BPMNShape>
375       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_11" bpmnElement="SequenceFlow_5" sourceElement="_BPMNShape_ScriptTask_131" targetElement="_BPMNShape_ExclusiveGateway_67">
376         <di:waypoint x="1879" y="453" />
377         <di:waypoint x="1879" y="521" />
378         <bpmndi:BPMNLabel>
379           <dc:Bounds x="1584" y="487" width="0" height="0" />
380         </bpmndi:BPMNLabel>
381       </bpmndi:BPMNEdge>
382       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_42" bpmnElement="SequenceFlow_29" sourceElement="_BPMNShape_ScriptTask_80">
383         <di:waypoint x="1053" y="1430" />
384         <di:waypoint x="945" y="1430" />
385         <bpmndi:BPMNLabel>
386           <dc:Bounds x="689" y="1415" width="0" height="0" />
387         </bpmndi:BPMNLabel>
388       </bpmndi:BPMNEdge>
389       <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_133" bpmnElement="callRESTQueryNetworkId_ScriptTask">
390         <dc:Bounds x="1294" y="100" width="100" height="80" />
391       </bpmndi:BPMNShape>
392       <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_134" bpmnElement="callRESTReQuery2NetworkID_ScriptTask">
393         <dc:Bounds x="1486" y="1390" width="100" height="80" />
394       </bpmndi:BPMNShape>
395       <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_135" bpmnElement="callRESTUpdateContrailNetwork_ScriptTask">
396         <dc:Bounds x="1294" y="1390" width="100" height="80" />
397       </bpmndi:BPMNShape>
398       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_54" bpmnElement="SequenceFlow_35" sourceElement="_BPMNShape_ScriptTask_134" targetElement="_BPMNShape_ScriptTask_135">
399         <di:waypoint x="1486" y="1430" />
400         <di:waypoint x="1394" y="1430" />
401         <bpmndi:BPMNLabel>
402           <dc:Bounds x="1130" y="1415" width="0" height="0" />
403         </bpmndi:BPMNLabel>
404       </bpmndi:BPMNEdge>
405       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_65" bpmnElement="SequenceFlow_46" sourceElement="_BPMNShape_ScriptTask_135">
406         <di:waypoint x="1294" y="1430" />
407         <di:waypoint x="1153" y="1430" />
408         <bpmndi:BPMNLabel>
409           <dc:Bounds x="1245" y="1431" width="33" height="14" />
410         </bpmndi:BPMNLabel>
411       </bpmndi:BPMNEdge>
412       <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_156" bpmnElement="callRESTQueryVpnBinding_ScriptTask">
413         <dc:Bounds x="1651" y="688" width="100" height="80" />
414       </bpmndi:BPMNShape>
415       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_18" bpmnElement="SequenceFlow_15" sourceElement="_BPMNShape_ScriptTask_156" targetElement="_BPMNShape_ScriptTask_215">
416         <di:waypoint x="1701" y="768" />
417         <di:waypoint x="1701" y="810" />
418         <bpmndi:BPMNLabel>
419           <dc:Bounds x="1388" y="781" width="6" height="6" />
420         </bpmndi:BPMNLabel>
421       </bpmndi:BPMNEdge>
422       <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_157" bpmnElement="prepareNetworkRequest_ScriptTask">
423         <dc:Bounds x="1652" y="1052" width="100" height="80" />
424       </bpmndi:BPMNShape>
425       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_89" bpmnElement="SequenceFlow_61" sourceElement="_BPMNShape_ScriptTask_157" targetElement="Activity_06vsf1e_di">
426         <di:waypoint x="1702" y="1132" />
427         <di:waypoint x="1702" y="1190" />
428         <bpmndi:BPMNLabel>
429           <dc:Bounds x="1389" y="1159" width="6" height="6" />
430         </bpmndi:BPMNLabel>
431       </bpmndi:BPMNEdge>
432       <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_90" bpmnElement="isRollbackOn_Network_ExclusiveGateway" isMarkerVisible="true">
433         <dc:Bounds x="466" y="1153" width="50" height="50" />
434         <bpmndi:BPMNLabel>
435           <dc:Bounds x="453" y="1213" width="78" height="14" />
436         </bpmndi:BPMNLabel>
437       </bpmndi:BPMNShape>
438       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_25" bpmnElement="isRollbackOn_YesNetwork_SequenceFlow" sourceElement="_BPMNShape_ExclusiveGateway_90" targetElement="_BPMNShape_ExclusiveGateway_215">
439         <di:waypoint x="491" y="1153" />
440         <di:waypoint x="491" y="1089" />
441         <bpmndi:BPMNLabel>
442           <dc:Bounds x="497" y="1133" width="18" height="14" />
443         </bpmndi:BPMNLabel>
444       </bpmndi:BPMNEdge>
445       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_34" bpmnElement="isRollbackOn_NoNetwork_SequenceFlow" sourceElement="_BPMNShape_ExclusiveGateway_90" targetElement="InclusiveGateway_1adrta3_di">
446         <di:waypoint x="516" y="1178" />
447         <di:waypoint x="682" y="1178" />
448         <bpmndi:BPMNLabel>
449           <dc:Bounds x="516" y="1183" width="15" height="14" />
450         </bpmndi:BPMNLabel>
451       </bpmndi:BPMNEdge>
452       <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_215" bpmnElement="callRESTQueryNetworkPolicy_ScriptTask">
453         <dc:Bounds x="1651" y="810" width="100" height="80" />
454       </bpmndi:BPMNShape>
455       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_60" bpmnElement="SequenceFlow_38" sourceElement="_BPMNShape_ScriptTask_215" targetElement="_BPMNShape_ScriptTask_335">
456         <di:waypoint x="1701" y="890" />
457         <di:waypoint x="1701" y="926" />
458         <bpmndi:BPMNLabel>
459           <dc:Bounds x="1388" y="900" width="6" height="6" />
460         </bpmndi:BPMNLabel>
461       </bpmndi:BPMNEdge>
462       <bpmndi:BPMNShape id="_BPMNShape_InclusiveGateway_24" bpmnElement="InclusiveGateway_6">
463         <dc:Bounds x="936" y="859" width="50" height="50" />
464         <bpmndi:BPMNLabel>
465           <dc:Bounds x="651" y="914" width="0" height="0" />
466         </bpmndi:BPMNLabel>
467       </bpmndi:BPMNShape>
468       <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_215" bpmnElement="isPONR_ExclusiveGateway" isMarkerVisible="true">
469         <dc:Bounds x="466" y="1039" width="50" height="50" />
470         <bpmndi:BPMNLabel>
471           <dc:Bounds x="400" y="1054" width="46" height="14" />
472         </bpmndi:BPMNLabel>
473       </bpmndi:BPMNShape>
474       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_77" bpmnElement="isPONR_Yes_SequenceFlow" sourceElement="_BPMNShape_ExclusiveGateway_215" targetElement="InclusiveGateway_1adrta3_di">
475         <di:waypoint x="516" y="1064" />
476         <di:waypoint x="707" y="1064" />
477         <di:waypoint x="707" y="1153" />
478         <bpmndi:BPMNLabel>
479           <dc:Bounds x="523" y="1068" width="18" height="14" />
480         </bpmndi:BPMNLabel>
481       </bpmndi:BPMNEdge>
482       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_85" bpmnElement="isPONR_No_SequenceFlow" sourceElement="_BPMNShape_ExclusiveGateway_215">
483         <di:waypoint x="491" y="1039" />
484         <di:waypoint x="491" y="971" />
485         <di:waypoint x="707" y="971" />
486         <di:waypoint x="707" y="1153" />
487         <bpmndi:BPMNLabel>
488           <dc:Bounds x="495" y="1028" width="15" height="14" />
489         </bpmndi:BPMNLabel>
490       </bpmndi:BPMNEdge>
491       <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_217" bpmnElement="sdncOk_ExclusiveGateway" isMarkerVisible="true">
492         <dc:Bounds x="803" y="709" width="50" height="50" />
493         <bpmndi:BPMNLabel>
494           <dc:Bounds x="798" y="683" width="60" height="14" />
495         </bpmndi:BPMNLabel>
496       </bpmndi:BPMNShape>
497       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_92" bpmnElement="sdncOk_Yeso_ExclusiveGateway" sourceElement="_BPMNShape_ExclusiveGateway_217" targetElement="_BPMNShape_ScriptTask_261">
498         <di:waypoint x="853" y="734" />
499         <di:waypoint x="911" y="733" />
500         <bpmndi:BPMNLabel>
501           <dc:Bounds x="855" y="737" width="18" height="14" />
502         </bpmndi:BPMNLabel>
503       </bpmndi:BPMNEdge>
504       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_93" bpmnElement="sdncOk_No_ExclusiveGateway" sourceElement="_BPMNShape_ExclusiveGateway_217">
505         <di:waypoint x="827" y="758" />
506         <di:waypoint x="827" y="884" />
507         <di:waypoint x="936" y="884" />
508         <bpmndi:BPMNLabel>
509           <dc:Bounds x="836" y="761" width="15" height="14" />
510         </bpmndi:BPMNLabel>
511       </bpmndi:BPMNEdge>
512       <bpmndi:BPMNShape id="_BPMNShape_EndEvent_177" bpmnElement="EndEvent_3">
513         <dc:Bounds x="909" y="1412" width="36" height="36" />
514         <bpmndi:BPMNLabel>
515           <dc:Bounds x="617" y="1453" width="0" height="0" />
516         </bpmndi:BPMNLabel>
517       </bpmndi:BPMNShape>
518       <bpmndi:BPMNShape id="_BPMNShape_EndEvent_178" bpmnElement="EndEvent_4">
519         <dc:Bounds x="1339" y="968" width="36" height="36" />
520         <bpmndi:BPMNLabel>
521           <dc:Bounds x="1047" y="1009" width="0" height="0" />
522         </bpmndi:BPMNLabel>
523       </bpmndi:BPMNShape>
524       <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_245" bpmnElement="callRESTQueryCloudRegion_ScriptTask">
525         <dc:Bounds x="1510" y="100" width="100" height="80" />
526       </bpmndi:BPMNShape>
527       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_53" bpmnElement="SequenceFlow_32" sourceElement="_BPMNShape_ScriptTask_245" targetElement="_BPMNShape_ScriptTask_67">
528         <di:waypoint x="1610" y="140" />
529         <di:waypoint x="1829" y="140" />
530         <bpmndi:BPMNLabel>
531           <dc:Bounds x="1410" y="125" width="0" height="0" />
532         </bpmndi:BPMNLabel>
533       </bpmndi:BPMNEdge>
534       <bpmndi:BPMNShape id="_BPMNShape_BoundaryEvent_38" bpmnElement="BoundaryEvent_4">
535         <dc:Bounds x="1911" y="355" width="36" height="36" />
536         <bpmndi:BPMNLabel>
537           <dc:Bounds x="1619" y="391" width="0" height="0" />
538         </bpmndi:BPMNLabel>
539       </bpmndi:BPMNShape>
540       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_69" bpmnElement="SequenceFlow_34" sourceElement="_BPMNShape_BoundaryEvent_38" targetElement="_BPMNShape_EndEvent_124">
541         <di:waypoint x="1947" y="373" />
542         <di:waypoint x="2010" y="373" />
543         <di:waypoint x="2010" y="528" />
544         <bpmndi:BPMNLabel>
545           <dc:Bounds x="1669" y="358" width="0" height="0" />
546         </bpmndi:BPMNLabel>
547       </bpmndi:BPMNEdge>
548       <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_261" bpmnElement="prepareSDNCRollbackRequest_ScriptTask">
549         <dc:Bounds x="911" y="694" width="100" height="79" />
550       </bpmndi:BPMNShape>
551       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_76" bpmnElement="SequenceFlow_47" sourceElement="_BPMNShape_InclusiveGateway_24">
552         <di:waypoint x="961" y="909" />
553         <di:waypoint x="961" y="946" />
554         <bpmndi:BPMNLabel>
555           <dc:Bounds x="666" y="927.5" width="0" height="0" />
556         </bpmndi:BPMNLabel>
557       </bpmndi:BPMNEdge>
558       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_84" bpmnElement="SequenceFlow_53" sourceElement="_BPMNShape_ScriptTask_261">
559         <di:waypoint x="961" y="773" />
560         <di:waypoint x="961" y="859" />
561         <bpmndi:BPMNLabel>
562           <dc:Bounds x="666" y="816" width="0" height="0" />
563         </bpmndi:BPMNLabel>
564       </bpmndi:BPMNEdge>
565       <bpmndi:BPMNShape id="_BPMNShape_SubProcess_28" bpmnElement="unexpectedErrors_SubProcess" isExpanded="true">
566         <dc:Bounds x="248" y="375" width="394" height="188" />
567       </bpmndi:BPMNShape>
568       <bpmndi:BPMNShape id="_BPMNShape_StartEvent_71" bpmnElement="StartEvent_1">
569         <dc:Bounds x="281" y="452" width="36" height="36" />
570         <bpmndi:BPMNLabel>
571           <dc:Bounds x="-11" y="493" width="0" height="0" />
572         </bpmndi:BPMNLabel>
573       </bpmndi:BPMNShape>
574       <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_270" bpmnElement="ScriptTask_1">
575         <dc:Bounds x="396" y="430" width="100" height="80" />
576       </bpmndi:BPMNShape>
577       <bpmndi:BPMNShape id="_BPMNShape_EndEvent_220" bpmnElement="EndEvent_1">
578         <dc:Bounds x="557" y="452" width="36" height="36" />
579         <bpmndi:BPMNLabel>
580           <dc:Bounds x="265" y="493" width="0" height="0" />
581         </bpmndi:BPMNLabel>
582       </bpmndi:BPMNShape>
583       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_5" bpmnElement="SequenceFlow_10" sourceElement="_BPMNShape_StartEvent_71" targetElement="_BPMNShape_ScriptTask_270">
584         <di:waypoint x="317" y="470" />
585         <di:waypoint x="396" y="470" />
586         <bpmndi:BPMNLabel>
587           <dc:Bounds x="49" y="470" width="0" height="0" />
588         </bpmndi:BPMNLabel>
589       </bpmndi:BPMNEdge>
590       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_13" bpmnElement="SequenceFlow_14" sourceElement="_BPMNShape_ScriptTask_270" targetElement="_BPMNShape_EndEvent_220">
591         <di:waypoint x="496" y="470" />
592         <di:waypoint x="557" y="470" />
593         <bpmndi:BPMNLabel>
594           <dc:Bounds x="221" y="470" width="0" height="0" />
595         </bpmndi:BPMNLabel>
596       </bpmndi:BPMNEdge>
597       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_3" bpmnElement="SequenceFlow_3" sourceElement="ScriptTask_0e58tta_di" targetElement="_BPMNShape_ScriptTask_133">
598         <di:waypoint x="1096" y="203" />
599         <di:waypoint x="1115" y="203" />
600         <di:waypoint x="1115" y="202" />
601         <di:waypoint x="1171" y="202" />
602         <di:waypoint x="1171" y="140" />
603         <di:waypoint x="1220" y="140" />
604         <di:waypoint x="1294" y="140" />
605         <bpmndi:BPMNLabel>
606           <dc:Bounds x="788" y="184" width="90" height="6" />
607         </bpmndi:BPMNLabel>
608       </bpmndi:BPMNEdge>
609       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_22" bpmnElement="SequenceFlow_24" sourceElement="_BPMNShape_ScriptTask_133" targetElement="_BPMNShape_ScriptTask_245">
610         <di:waypoint x="1394" y="140" />
611         <di:waypoint x="1510" y="140" />
612         <bpmndi:BPMNLabel>
613           <dc:Bounds x="1127" y="140" width="6" height="6" />
614         </bpmndi:BPMNLabel>
615       </bpmndi:BPMNEdge>
616       <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_335" bpmnElement="callRESTQueryNetworkTableRef_ScriptTask">
617         <dc:Bounds x="1651" y="926" width="100" height="80" />
618       </bpmndi:BPMNShape>
619       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_2" bpmnElement="SequenceFlow_2" sourceElement="_BPMNShape_ScriptTask_335" targetElement="_BPMNShape_ScriptTask_157">
620         <di:waypoint x="1701" y="1006" />
621         <di:waypoint x="1702" y="1052" />
622         <bpmndi:BPMNLabel>
623           <dc:Bounds x="1388" y="1028" width="6" height="6" />
624         </bpmndi:BPMNLabel>
625       </bpmndi:BPMNEdge>
626       <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_336" bpmnElement="callRESTReQuery1NetworkID_ScriptTask">
627         <dc:Bounds x="1653" y="576" width="100" height="80" />
628       </bpmndi:BPMNShape>
629       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_4" bpmnElement="SequenceFlow_6" sourceElement="_BPMNShape_ScriptTask_336" targetElement="_BPMNShape_ScriptTask_156">
630         <di:waypoint x="1703" y="656" />
631         <di:waypoint x="1703" y="672" />
632         <di:waypoint x="1701" y="672" />
633         <di:waypoint x="1701" y="688" />
634         <bpmndi:BPMNLabel>
635           <dc:Bounds x="1390" y="666" width="6" height="6" />
636         </bpmndi:BPMNLabel>
637       </bpmndi:BPMNEdge>
638       <bpmndi:BPMNShape id="ScriptTask_1p6n2yy_di" bpmnElement="ScriptTask_1p6n2yy">
639         <dc:Bounds x="911" y="946" width="100" height="80" />
640       </bpmndi:BPMNShape>
641       <bpmndi:BPMNShape id="ScriptTask_0voqz6r_di" bpmnElement="ScriptTask_0voqz6r">
642         <dc:Bounds x="1110" y="1138" width="100" height="80" />
643       </bpmndi:BPMNShape>
644       <bpmndi:BPMNEdge id="SequenceFlow_04rdjfi_di" bpmnElement="SequenceFlow_04rdjfi">
645         <di:waypoint x="1210" y="1178" />
646         <di:waypoint x="1275" y="1178" />
647         <di:waypoint x="1275" y="986" />
648         <di:waypoint x="1339" y="986" />
649         <bpmndi:BPMNLabel>
650           <dc:Bounds x="1006" y="961" width="0" height="0" />
651         </bpmndi:BPMNLabel>
652       </bpmndi:BPMNEdge>
653       <bpmndi:BPMNShape id="ExclusiveGateway_1kjh92x_di" bpmnElement="ExclusiveGateway_1kjh92x" isMarkerVisible="true">
654         <dc:Bounds x="682" y="709" width="50" height="50" />
655         <bpmndi:BPMNLabel>
656           <dc:Bounds x="679" y="672" width="74" height="27" />
657         </bpmndi:BPMNLabel>
658       </bpmndi:BPMNShape>
659       <bpmndi:BPMNEdge id="SequenceFlow_0nrc66n_di" bpmnElement="SequenceFlow_0nrc66n">
660         <di:waypoint x="732" y="734" />
661         <di:waypoint x="803" y="734" />
662         <bpmndi:BPMNLabel>
663           <dc:Bounds x="737" y="735" width="15" height="14" />
664         </bpmndi:BPMNLabel>
665       </bpmndi:BPMNEdge>
666       <bpmndi:BPMNEdge id="SequenceFlow_0srdlf3_di" bpmnElement="SequenceFlow_0srdlf3">
667         <di:waypoint x="707" y="759" />
668         <di:waypoint x="707" y="884" />
669         <di:waypoint x="936" y="884" />
670         <bpmndi:BPMNLabel>
671           <dc:Bounds x="712" y="760" width="18" height="14" />
672         </bpmndi:BPMNLabel>
673       </bpmndi:BPMNEdge>
674       <bpmndi:BPMNShape id="ScriptTask_1gedbow_di" bpmnElement="ScriptTask_1gedbow">
675         <dc:Bounds x="299" y="1138" width="100" height="80" />
676       </bpmndi:BPMNShape>
677       <bpmndi:BPMNEdge id="SequenceFlow_053re4q_di" bpmnElement="SequenceFlow_053re4q">
678         <di:waypoint x="399" y="1178" />
679         <di:waypoint x="466" y="1178" />
680         <bpmndi:BPMNLabel>
681           <dc:Bounds x="123" y="1163" width="0" height="0" />
682         </bpmndi:BPMNLabel>
683       </bpmndi:BPMNEdge>
684       <bpmndi:BPMNShape id="InclusiveGateway_1adrta3_di" bpmnElement="ExclusiveGateway_1dcb5p2">
685         <dc:Bounds x="682" y="1153" width="50" height="50" />
686         <bpmndi:BPMNLabel>
687           <dc:Bounds x="397" y="1203" width="0" height="0" />
688         </bpmndi:BPMNLabel>
689       </bpmndi:BPMNShape>
690       <bpmndi:BPMNEdge id="SequenceFlow_0ze5k6c_di" bpmnElement="SequenceFlow_0ze5k6c">
691         <di:waypoint x="732" y="1178" />
692         <di:waypoint x="1110" y="1178" />
693         <bpmndi:BPMNLabel>
694           <dc:Bounds x="678" y="1163" width="0" height="0" />
695         </bpmndi:BPMNLabel>
696       </bpmndi:BPMNEdge>
697       <bpmndi:BPMNShape id="ScriptTask_0e58tta_di" bpmnElement="callGetServiceInstance">
698         <dc:Bounds x="996" y="163" width="100" height="80" />
699       </bpmndi:BPMNShape>
700       <bpmndi:BPMNShape id="Activity_06vsf1e_di" bpmnElement="openstackAdapterTask">
701         <dc:Bounds x="1653" y="1190" width="100" height="80" />
702       </bpmndi:BPMNShape>
703       <bpmndi:BPMNEdge id="Flow_1eutzkj_di" bpmnElement="Flow_1eutzkj">
704         <di:waypoint x="1704" y="1270" />
705         <di:waypoint x="1704" y="1430" />
706         <di:waypoint x="1586" y="1430" />
707       </bpmndi:BPMNEdge>
708     </bpmndi:BPMNPlane>
709   </bpmndi:BPMNDiagram>
710 </bpmn2:definitions>