blob: c893690f79584837fd7ca5c1b4ab1210d8821b07 [file] [log] [blame]
Rob Daugherty43dc0ba2017-09-21 15:25:28 -04001<?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="1.9.0" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL BPMN20.xsd">
3 <bpmn2:process id="CreateVcpeResCustService" name="CreateVcpeResCustService" isExecutable="true">
4 <bpmn2:scriptTask id="sendSyncAckResponse_ScriptTask" name="Send Sync Ack Response" scriptFormat="groovy">
5 <bpmn2:incoming>SequenceFlow_7</bpmn2:incoming>
6 <bpmn2:outgoing>SequenceFlow_3</bpmn2:outgoing>
7 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.vcpe.scripts.*
8def CreateVcpeResCustService = new CreateVcpeResCustService()
9CreateVcpeResCustService.sendSyncResponse(execution)]]></bpmn2:script>
10 </bpmn2:scriptTask>
11 <bpmn2:sequenceFlow id="SequenceFlow_3" name="" sourceRef="sendSyncAckResponse_ScriptTask" targetRef="IntermediateThrowEvent_2" />
12 <bpmn2:startEvent id="createVCPE_startEvent" name="Start Flow">
13 <bpmn2:outgoing>SequenceFlow_1</bpmn2:outgoing>
14 </bpmn2:startEvent>
15 <bpmn2:sequenceFlow id="SequenceFlow_1" name="" sourceRef="createVCPE_startEvent" targetRef="preProcessRequest_ScriptTask" />
16 <bpmn2:scriptTask id="preProcessRequest_ScriptTask" name="PreProcess Incoming Request" scriptFormat="groovy">
17 <bpmn2:incoming>SequenceFlow_1</bpmn2:incoming>
18 <bpmn2:outgoing>SequenceFlow_7</bpmn2:outgoing>
19 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.vcpe.scripts.*
20def CreateVcpeResCustService = new CreateVcpeResCustService()
21CreateVcpeResCustService.preProcessRequest(execution)
22]]></bpmn2:script>
23 </bpmn2:scriptTask>
24 <bpmn2:sequenceFlow id="SequenceFlow_7" name="" sourceRef="preProcessRequest_ScriptTask" targetRef="sendSyncAckResponse_ScriptTask" />
25 <bpmn2:intermediateCatchEvent id="IntermediateCatchEvent_3" name="vCPE-RESCUST">
26 <bpmn2:outgoing>SequenceFlow_1eu60rt</bpmn2:outgoing>
27 <bpmn2:linkEventDefinition id="_LinkEventDefinition_37" name="vCPE-RESCUST" />
28 </bpmn2:intermediateCatchEvent>
29 <bpmn2:scriptTask id="postProcessAndCompletionRequest_ScriptTask" name="Post Process &#38; Completion Request" scriptFormat="groovy">
30 <bpmn2:incoming>SequenceFlow_0afe2pg</bpmn2:incoming>
31 <bpmn2:outgoing>SequenceFlow_29</bpmn2:outgoing>
32 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.vcpe.scripts.*
33def CreateVcpeResCustService = new CreateVcpeResCustService()
34CreateVcpeResCustService.postProcessResponse(execution)]]></bpmn2:script>
35 </bpmn2:scriptTask>
36 <bpmn2:sequenceFlow id="SequenceFlow_29" name="" sourceRef="postProcessAndCompletionRequest_ScriptTask" targetRef="callCompleteMsoProcess_CallActivity" />
37 <bpmn2:callActivity id="callCompleteMsoProcess_CallActivity" name="Call CompleteMsoProcess" calledElement="CompleteMsoProcess">
38 <bpmn2:extensionElements>
39 <camunda:in variables="all" />
40 <camunda:out variables="all" />
41 <camunda:in source="CVRCS_CompleteMsoProcessRequest" target="CompleteMsoProcessRequest" />
42 <camunda:in source="mso-request-id" target="requestId" />
43 <camunda:in source="serviceInstanceId" target="serviceInstanceId" />
44 <camunda:out source="CMSO_ResponseCode" target="CMSO_ResponseCode" />
45 <camunda:out source="CompleteMsoProcessResponse" target="CompleteMsoProcessResponse" />
46 <camunda:out source="CMSO_ErrorResponse" target="CMSO_ErrorResponse" />
47 </bpmn2:extensionElements>
48 <bpmn2:incoming>SequenceFlow_29</bpmn2:incoming>
49 <bpmn2:outgoing>SequenceFlow_8</bpmn2:outgoing>
50 </bpmn2:callActivity>
51 <bpmn2:sequenceFlow id="SequenceFlow_8" name="" sourceRef="callCompleteMsoProcess_CallActivity" targetRef="ScriptTask_2" />
52 <bpmn2:scriptTask id="ScriptTask_2" name="Set Success Indicator" scriptFormat="groovy">
53 <bpmn2:incoming>SequenceFlow_8</bpmn2:incoming>
54 <bpmn2:outgoing>SequenceFlow_6</bpmn2:outgoing>
55 <bpmn2:script><![CDATA[// The following variable is checked by the unit test
56execution.setVariable("CreateVcpeResCustServiceSuccessIndicator", true)]]></bpmn2:script>
57 </bpmn2:scriptTask>
58 <bpmn2:sequenceFlow id="SequenceFlow_6" name="" sourceRef="ScriptTask_2" targetRef="CreateVCPE_EndEvent" />
59 <bpmn2:endEvent id="CreateVCPE_EndEvent" name="End">
60 <bpmn2:incoming>SequenceFlow_6</bpmn2:incoming>
61 <bpmn2:terminateEventDefinition id="_TerminateEventDefinition_13" />
62 </bpmn2:endEvent>
63 <bpmn2:subProcess id="UnexpectedError_SubProcess_1" name="Sub-process for UnexpectedErrors" triggeredByEvent="true">
64 <bpmn2:startEvent id="StartEvent_1">
65 <bpmn2:outgoing>SequenceFlow_2</bpmn2:outgoing>
66 <bpmn2:errorEventDefinition id="_ErrorEventDefinition_92" errorRef="Error_1" />
67 </bpmn2:startEvent>
68 <bpmn2:endEvent id="EndEvent_1">
69 <bpmn2:incoming>SequenceFlow_5</bpmn2:incoming>
70 </bpmn2:endEvent>
71 <bpmn2:sequenceFlow id="SequenceFlow_2" name="" sourceRef="StartEvent_1" targetRef="ScriptTask_1" />
72 <bpmn2:scriptTask id="ScriptTask_1" name="Log / Print Unexpected Error" scriptFormat="groovy">
73 <bpmn2:incoming>SequenceFlow_2</bpmn2:incoming>
74 <bpmn2:outgoing>SequenceFlow_5</bpmn2:outgoing>
75 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.common.scripts.*
76ExceptionUtil ex = new ExceptionUtil()
77ex.processJavaException(execution)]]></bpmn2:script>
78 </bpmn2:scriptTask>
79 <bpmn2:sequenceFlow id="SequenceFlow_5" name="" sourceRef="ScriptTask_1" targetRef="EndEvent_1" />
80 </bpmn2:subProcess>
81 <bpmn2:intermediateCatchEvent id="IntermediateCatchEvent_4" name="FinishProcess">
82 <bpmn2:outgoing>SequenceFlow_12ilko1</bpmn2:outgoing>
83 <bpmn2:linkEventDefinition id="_LinkEventDefinition_39" name="FinishProcess" />
84 </bpmn2:intermediateCatchEvent>
85 <bpmn2:callActivity id="doCreateServiceInstance_CallActivity" name="Call Create &#10;ServiceInstance&#10;" calledElement="DoCreateServiceInstance">
86 <bpmn2:extensionElements>
87 <camunda:in source="msoRequestId" target="msoRequestId" />
88 <camunda:in source="globalSubscriberId" target="globalSubscriberId" />
89 <camunda:in source="subscriptionServiceType" target="subscriptionServiceType" />
90 <camunda:in source="serviceInstanceId" target="serviceInstanceId" />
91 <camunda:out source="rollbackData" target="DCRESI_rollbackData" />
92 <camunda:in source="serviceInstanceName" target="serviceInstanceName" />
93 <camunda:in source="serviceModelInfo" target="serviceModelInfo" />
94 <camunda:in source="failIfExists" target="failIfExists" />
95 <camunda:in source="disableRollback" target="disableRollback" />
96 <camunda:in source="serviceInputParams" target="serviceInputParams" />
97 <camunda:out source="rolledBack" target="rolledBack" />
98 <camunda:out source="WorkflowException" target="WorkflowException" />
99 <camunda:out source="serviceInstanceName" target="serviceInstanceName" />
100 <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" />
101 <camunda:in source="subscriptionServiceType" target="subscriptionServiceType" />
102 <camunda:in source="productFamilyId" target="productFamilyId" />
103 <camunda:in source="sdncVersion" target="sdncVersion" />
104 </bpmn2:extensionElements>
105 <bpmn2:incoming>SequenceFlow_0j6sjye</bpmn2:incoming>
106 <bpmn2:outgoing>SequenceFlow_1ky2sv9</bpmn2:outgoing>
107 </bpmn2:callActivity>
108 <bpmn2:intermediateThrowEvent id="IntermediateThrowEvent_2" name="GoTovCPE-RESCUST">
109 <bpmn2:incoming>SequenceFlow_3</bpmn2:incoming>
110 <bpmn2:linkEventDefinition id="_LinkEventDefinition_38" name="vCPE-RESCUST" />
111 </bpmn2:intermediateThrowEvent>
112 <bpmn2:subProcess id="SubProcess_0s6hpty" name="Subprocess For Exception / FalloutHandler" triggeredByEvent="true">
113 <bpmn2:exclusiveGateway id="ExclusiveGateway_1vwgs6p" name="Is Rollback On?" default="SequenceFlow_0dhf2js">
114 <bpmn2:incoming>SequenceFlow_0zq7i3q</bpmn2:incoming>
115 <bpmn2:outgoing>SequenceFlow_0zpbskl</bpmn2:outgoing>
116 <bpmn2:outgoing>SequenceFlow_0dhf2js</bpmn2:outgoing>
117 </bpmn2:exclusiveGateway>
118 <bpmn2:startEvent id="StartEvent_1bwmffk" name="Fault Start">
119 <bpmn2:outgoing>SequenceFlow_0zq7i3q</bpmn2:outgoing>
120 <bpmn2:errorEventDefinition />
121 </bpmn2:startEvent>
122 <bpmn2:exclusiveGateway id="ExclusiveGateway_0ydrtdx" name="isPONR?" default="SequenceFlow_02o4yqx">
123 <bpmn2:incoming>SequenceFlow_0zpbskl</bpmn2:incoming>
124 <bpmn2:outgoing>SequenceFlow_1sx5llu</bpmn2:outgoing>
125 <bpmn2:outgoing>SequenceFlow_02o4yqx</bpmn2:outgoing>
126 </bpmn2:exclusiveGateway>
127 <bpmn2:exclusiveGateway id="ExclusiveGateway_1kvn1pz" name="is AR_TXC Ok?" default="SequenceFlow_19mxskt">
128 <bpmn2:incoming>SequenceFlow_0t3mtod</bpmn2:incoming>
129 <bpmn2:outgoing>SequenceFlow_19mxskt</bpmn2:outgoing>
130 <bpmn2:outgoing>SequenceFlow_1sl79hn</bpmn2:outgoing>
131 </bpmn2:exclusiveGateway>
132 <bpmn2:callActivity id="CallActivity_0jw5tqa" name="Call FalloutHandlerV1" calledElement="FalloutHandler">
133 <bpmn2:extensionElements>
134 <camunda:in source="CVRCS_falloutRequest" target="FalloutHandlerRequest" />
135 <camunda:in source="msoRequestId" target="mso-request-id" />
136 <camunda:in source="serviceInstanceId" target="mso-service-instance-id" />
137 <camunda:out source="FH_ResponseCode" target="FH_ResponseCode" />
138 <camunda:out source="FalloutHandlerResponse" target="FalloutHandlerResponse" />
139 <camunda:out source="FH_ErrorResponse" target="FH_ErrorResponse" />
140 </bpmn2:extensionElements>
141 <bpmn2:incoming>SequenceFlow_0807ukc</bpmn2:incoming>
142 <bpmn2:outgoing>SequenceFlow_19yywk8</bpmn2:outgoing>
143 </bpmn2:callActivity>
144 <bpmn2:endEvent id="EndEvent_04xute7">
145 <bpmn2:incoming>SequenceFlow_19yywk8</bpmn2:incoming>
146 </bpmn2:endEvent>
147 <bpmn2:scriptTask id="ScriptTask_0yk02h3" name="Prepare FalloutHandler" scriptFormat="groovy">
148 <bpmn2:incoming>SequenceFlow_0jg47xm</bpmn2:incoming>
149 <bpmn2:outgoing>SequenceFlow_0807ukc</bpmn2:outgoing>
150 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.vcpe.scripts.*
151def CreateVcpeResCustService = new CreateVcpeResCustService()
152CreateVcpeResCustService.prepareFalloutRequest(execution)]]></bpmn2:script>
153 </bpmn2:scriptTask>
154 <bpmn2:sequenceFlow id="SequenceFlow_0zpbskl" name="Yes" sourceRef="ExclusiveGateway_1vwgs6p" targetRef="ExclusiveGateway_0ydrtdx">
155 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("disableRollback") != true}]]></bpmn2:conditionExpression>
156 </bpmn2:sequenceFlow>
157 <bpmn2:sequenceFlow id="SequenceFlow_0dhf2js" name="No" sourceRef="ExclusiveGateway_1vwgs6p" targetRef="InclusiveGateway_0foywso" />
158 <bpmn2:sequenceFlow id="SequenceFlow_1sx5llu" name="Yes" sourceRef="ExclusiveGateway_0ydrtdx" targetRef="InclusiveGateway_0foywso">
159 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("PONR") == true}]]></bpmn2:conditionExpression>
160 </bpmn2:sequenceFlow>
161 <bpmn2:sequenceFlow id="SequenceFlow_02o4yqx" name="No" sourceRef="ExclusiveGateway_0ydrtdx" targetRef="ScriptTask_17doerz" />
162 <bpmn2:sequenceFlow id="SequenceFlow_19mxskt" name="No" sourceRef="ExclusiveGateway_1kvn1pz" targetRef="ExclusiveGateway_05indeh" />
163 <bpmn2:callActivity id="DoRollbackService_CallActivity" name="DoRollback&#10;Service&#10;" calledElement="DoCreateServiceInstanceRollback">
164 <bpmn2:extensionElements>
165 <camunda:in source="DCRESI_rollbackData" target="rollbackData" />
166 <camunda:in source="msoRequestId" target="msoRequestId" />
167 <camunda:out source="rollbackSuccessful" target="DCRESI_rollbackSuccessful" />
168 <camunda:out source="rollbackError" target="DCRESI_rollbackError" />
169 <camunda:in source="sdncVersion" target="sdncVersion" />
170 </bpmn2:extensionElements>
171 <bpmn2:incoming>SequenceFlow_1a7e8l1</bpmn2:incoming>
172 <bpmn2:outgoing>SequenceFlow_1f1hd3l</bpmn2:outgoing>
173 </bpmn2:callActivity>
174 <bpmn2:inclusiveGateway id="InclusiveGateway_0foywso">
175 <bpmn2:incoming>SequenceFlow_1sx5llu</bpmn2:incoming>
176 <bpmn2:incoming>SequenceFlow_0dhf2js</bpmn2:incoming>
177 <bpmn2:incoming>SequenceFlow_1rabks0</bpmn2:incoming>
178 <bpmn2:outgoing>SequenceFlow_0jg47xm</bpmn2:outgoing>
179 </bpmn2:inclusiveGateway>
180 <bpmn2:sequenceFlow id="SequenceFlow_1f1hd3l" sourceRef="DoRollbackService_CallActivity" targetRef="InclusiveGateway_0m9f5ka" />
181 <bpmn2:sequenceFlow id="SequenceFlow_0jg47xm" sourceRef="InclusiveGateway_0foywso" targetRef="ScriptTask_0yk02h3" />
182 <bpmn2:sequenceFlow id="SequenceFlow_0807ukc" sourceRef="ScriptTask_0yk02h3" targetRef="CallActivity_0jw5tqa" />
183 <bpmn2:sequenceFlow id="SequenceFlow_19yywk8" sourceRef="CallActivity_0jw5tqa" targetRef="EndEvent_04xute7" />
184 <bpmn2:exclusiveGateway id="ExclusiveGateway_05indeh" name="Service Rollback present?" default="SequenceFlow_0sezboq">
185 <bpmn2:incoming>SequenceFlow_19mxskt</bpmn2:incoming>
186 <bpmn2:incoming>SequenceFlow_17cz98f</bpmn2:incoming>
187 <bpmn2:outgoing>SequenceFlow_0sezboq</bpmn2:outgoing>
188 <bpmn2:outgoing>SequenceFlow_1a7e8l1</bpmn2:outgoing>
189 </bpmn2:exclusiveGateway>
190 <bpmn2:sequenceFlow id="SequenceFlow_0sezboq" name="No" sourceRef="ExclusiveGateway_05indeh" targetRef="InclusiveGateway_0m9f5ka" />
191 <bpmn2:sequenceFlow id="SequenceFlow_0zq7i3q" name="" sourceRef="StartEvent_1bwmffk" targetRef="ExclusiveGateway_1vwgs6p" />
192 <bpmn2:inclusiveGateway id="InclusiveGateway_0m9f5ka">
193 <bpmn2:incoming>SequenceFlow_1f1hd3l</bpmn2:incoming>
194 <bpmn2:incoming>SequenceFlow_0sezboq</bpmn2:incoming>
195 <bpmn2:incoming>SequenceFlow_1mbymcu</bpmn2:incoming>
196 <bpmn2:incoming>SequenceFlow_00by7l7</bpmn2:incoming>
197 <bpmn2:outgoing>SequenceFlow_1lv5ld6</bpmn2:outgoing>
198 </bpmn2:inclusiveGateway>
199 <bpmn2:scriptTask id="ScriptTask_17doerz" name="Pre Process Rollback" scriptFormat="groovy">
200 <bpmn2:incoming>SequenceFlow_02o4yqx</bpmn2:incoming>
201 <bpmn2:outgoing>SequenceFlow_0ftzjjm</bpmn2:outgoing>
202 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.vcpe.scripts.*
203def CreateVcpeResCustService= new CreateVcpeResCustService()
204CreateVcpeResCustService.preProcessRollback(execution)]]></bpmn2:script>
205 </bpmn2:scriptTask>
206 <bpmn2:scriptTask id="ScriptTask_0wyub4x" name="Post Process Rollback" scriptFormat="groovy">
207 <bpmn2:incoming>SequenceFlow_0dvsqpp</bpmn2:incoming>
208 <bpmn2:outgoing>SequenceFlow_1rabks0</bpmn2:outgoing>
209 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.vcpe.scripts.*
210def CreateVcpeResCustService= new CreateVcpeResCustService()
211CreateVcpeResCustService.postProcessRollback(execution)]]></bpmn2:script>
212 </bpmn2:scriptTask>
213 <bpmn2:sequenceFlow id="SequenceFlow_1rabks0" sourceRef="ScriptTask_0wyub4x" targetRef="InclusiveGateway_0foywso" />
214 <bpmn2:exclusiveGateway id="ExclusiveGateway_06gq6em" name="is AR_BRG Ok?" default="SequenceFlow_0ya1cr3">
215 <bpmn2:incoming>SequenceFlow_12dakwh</bpmn2:incoming>
216 <bpmn2:outgoing>SequenceFlow_0orpdrl</bpmn2:outgoing>
217 <bpmn2:outgoing>SequenceFlow_0ya1cr3</bpmn2:outgoing>
218 </bpmn2:exclusiveGateway>
219 <bpmn2:callActivity id="CallActivity_1bpuf2p" name="DoRollback&#10;BRG Allotted Resources&#10;" calledElement="DoCreateAllottedResourceBRGRollback">
220 <bpmn2:extensionElements>
221 <camunda:in source="msoRequestId" target="msoRequestId" />
222 <camunda:in source="DCARBRG_rollbackData" target="rollbackData" />
223 <camunda:in source="sdncVersion" target="sdncVersion" />
224 <camunda:out source="rollbackSuccessful" target="DCARCR_rollbackSuccessful" />
225 <camunda:out source="rollbackError" target="DCARCR_rollbackError" />
226 </bpmn2:extensionElements>
227 <bpmn2:incoming>SequenceFlow_0orpdrl</bpmn2:incoming>
228 <bpmn2:outgoing>SequenceFlow_1t3cnnx</bpmn2:outgoing>
229 </bpmn2:callActivity>
230 <bpmn2:inclusiveGateway id="InclusiveGateway_131ozdf">
231 <bpmn2:incoming>SequenceFlow_0ya1cr3</bpmn2:incoming>
232 <bpmn2:incoming>SequenceFlow_1sim44y</bpmn2:incoming>
233 <bpmn2:outgoing>SequenceFlow_027lz43</bpmn2:outgoing>
234 </bpmn2:inclusiveGateway>
235 <bpmn2:sequenceFlow id="SequenceFlow_0orpdrl" name="Yes" sourceRef="ExclusiveGateway_06gq6em" targetRef="CallActivity_1bpuf2p">
236 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("DCARBRG_rollbackData") != null }]]></bpmn2:conditionExpression>
237 </bpmn2:sequenceFlow>
238 <bpmn2:sequenceFlow id="SequenceFlow_1t3cnnx" sourceRef="CallActivity_1bpuf2p" targetRef="ExclusiveGateway_1mjdcct" />
239 <bpmn2:sequenceFlow id="SequenceFlow_0ya1cr3" name="No" sourceRef="ExclusiveGateway_06gq6em" targetRef="InclusiveGateway_131ozdf" />
240 <bpmn2:exclusiveGateway id="ExclusiveGateway_14tl857" name="is VNF Ok?" default="SequenceFlow_1kpdu1j">
241 <bpmn2:incoming>SequenceFlow_027lz43</bpmn2:incoming>
242 <bpmn2:outgoing>SequenceFlow_1kpdu1j</bpmn2:outgoing>
243 <bpmn2:outgoing>SequenceFlow_007p8k3</bpmn2:outgoing>
244 </bpmn2:exclusiveGateway>
245 <bpmn2:inclusiveGateway id="InclusiveGateway_142br6v">
246 <bpmn2:incoming>SequenceFlow_1kpdu1j</bpmn2:incoming>
247 <bpmn2:incoming>SequenceFlow_1quvahv</bpmn2:incoming>
248 <bpmn2:outgoing>SequenceFlow_0t3mtod</bpmn2:outgoing>
249 </bpmn2:inclusiveGateway>
250 <bpmn2:sequenceFlow id="SequenceFlow_1kpdu1j" name="No" sourceRef="ExclusiveGateway_14tl857" targetRef="InclusiveGateway_142br6v" />
251 <bpmn2:exclusiveGateway id="ExclusiveGateway_1mjdcct" name="Rollback success?" default="SequenceFlow_0dr2fem">
252 <bpmn2:incoming>SequenceFlow_1t3cnnx</bpmn2:incoming>
253 <bpmn2:outgoing>SequenceFlow_1sim44y</bpmn2:outgoing>
254 <bpmn2:outgoing>SequenceFlow_0dr2fem</bpmn2:outgoing>
255 </bpmn2:exclusiveGateway>
256 <bpmn2:sequenceFlow id="SequenceFlow_1sim44y" name="Yes" sourceRef="ExclusiveGateway_1mjdcct" targetRef="InclusiveGateway_131ozdf">
257 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{ execution.getVariable("DCARBRG_rollbackSuccessful") == true }]]></bpmn2:conditionExpression>
258 </bpmn2:sequenceFlow>
259 <bpmn2:sequenceFlow id="SequenceFlow_0dr2fem" name="No" sourceRef="ExclusiveGateway_1mjdcct" targetRef="InclusiveGateway_1xenadu" />
260 <bpmn2:exclusiveGateway id="ExclusiveGateway_05dg1m1" name="Rollback success?" default="SequenceFlow_1mbymcu">
261 <bpmn2:incoming>SequenceFlow_1mpsdaj</bpmn2:incoming>
262 <bpmn2:outgoing>SequenceFlow_1quvahv</bpmn2:outgoing>
263 <bpmn2:outgoing>SequenceFlow_1mbymcu</bpmn2:outgoing>
264 </bpmn2:exclusiveGateway>
265 <bpmn2:sequenceFlow id="SequenceFlow_1quvahv" name="Yes" sourceRef="ExclusiveGateway_05dg1m1" targetRef="InclusiveGateway_142br6v">
266 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{ execution.getVariable("DCRENI_rollbackData") != null }]]></bpmn2:conditionExpression>
267 </bpmn2:sequenceFlow>
268 <bpmn2:sequenceFlow id="SequenceFlow_1mbymcu" name="No" sourceRef="ExclusiveGateway_05dg1m1" targetRef="InclusiveGateway_0m9f5ka" />
269 <bpmn2:exclusiveGateway id="ExclusiveGateway_0y7gtd9" name="rollback failed?" default="SequenceFlow_12dakwh">
270 <bpmn2:incoming>SequenceFlow_0ftzjjm</bpmn2:incoming>
271 <bpmn2:outgoing>SequenceFlow_12dakwh</bpmn2:outgoing>
272 <bpmn2:outgoing>SequenceFlow_09nn9a9</bpmn2:outgoing>
273 </bpmn2:exclusiveGateway>
274 <bpmn2:sequenceFlow id="SequenceFlow_0ftzjjm" sourceRef="ScriptTask_17doerz" targetRef="ExclusiveGateway_0y7gtd9" />
275 <bpmn2:sequenceFlow id="SequenceFlow_12dakwh" name="No" sourceRef="ExclusiveGateway_0y7gtd9" targetRef="ExclusiveGateway_06gq6em" />
276 <bpmn2:inclusiveGateway id="InclusiveGateway_1xenadu">
277 <bpmn2:incoming>SequenceFlow_1lv5ld6</bpmn2:incoming>
278 <bpmn2:incoming>SequenceFlow_09nn9a9</bpmn2:incoming>
279 <bpmn2:incoming>SequenceFlow_0dr2fem</bpmn2:incoming>
280 <bpmn2:outgoing>SequenceFlow_0dvsqpp</bpmn2:outgoing>
281 </bpmn2:inclusiveGateway>
282 <bpmn2:sequenceFlow id="SequenceFlow_1lv5ld6" sourceRef="InclusiveGateway_0m9f5ka" targetRef="InclusiveGateway_1xenadu" />
283 <bpmn2:sequenceFlow id="SequenceFlow_0dvsqpp" sourceRef="InclusiveGateway_1xenadu" targetRef="ScriptTask_0wyub4x" />
284 <bpmn2:sequenceFlow id="SequenceFlow_09nn9a9" name="Yes" sourceRef="ExclusiveGateway_0y7gtd9" targetRef="InclusiveGateway_1xenadu">
285 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("rolledBack") != null && execution.getVariable("rolledBack") == false}]]></bpmn2:conditionExpression>
286 </bpmn2:sequenceFlow>
287 <bpmn2:sequenceFlow id="SequenceFlow_027lz43" sourceRef="InclusiveGateway_131ozdf" targetRef="ExclusiveGateway_14tl857" />
288 <bpmn2:sequenceFlow id="SequenceFlow_0t3mtod" sourceRef="InclusiveGateway_142br6v" targetRef="ExclusiveGateway_1kvn1pz" />
289 <bpmn2:callActivity id="CallActivity_071yaf8" name="DoRollback&#10;TXC Allotted Resources&#10;" calledElement="DoCreateAllottedResourceTXCRollback">
290 <bpmn2:extensionElements>
291 <camunda:in source="msoRequestId" target="msoRequestId" />
292 <camunda:in source="DCARTXC_rollbackData" target="rollbackData" />
293 <camunda:in source="sdncVersion" target="sdncVersion" />
294 <camunda:out source="rollbackSuccessful" target="DCARBRG_rollbackSuccessful" />
295 <camunda:out source="rollbackError" target="DCARBRG_rollbackError" />
296 </bpmn2:extensionElements>
297 <bpmn2:incoming>SequenceFlow_1sl79hn</bpmn2:incoming>
298 <bpmn2:outgoing>SequenceFlow_0ne9n0g</bpmn2:outgoing>
299 </bpmn2:callActivity>
300 <bpmn2:sequenceFlow id="SequenceFlow_1sl79hn" name="Yes" sourceRef="ExclusiveGateway_1kvn1pz" targetRef="CallActivity_071yaf8">
301 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("DCARTXC_rollbackData") != null }]]></bpmn2:conditionExpression>
302 </bpmn2:sequenceFlow>
303 <bpmn2:exclusiveGateway id="ExclusiveGateway_0y158bb" name="Rollback success?">
304 <bpmn2:incoming>SequenceFlow_0ne9n0g</bpmn2:incoming>
305 <bpmn2:outgoing>SequenceFlow_00by7l7</bpmn2:outgoing>
306 <bpmn2:outgoing>SequenceFlow_17cz98f</bpmn2:outgoing>
307 </bpmn2:exclusiveGateway>
308 <bpmn2:sequenceFlow id="SequenceFlow_0ne9n0g" sourceRef="CallActivity_071yaf8" targetRef="ExclusiveGateway_0y158bb" />
309 <bpmn2:sequenceFlow id="SequenceFlow_1a7e8l1" name="Yes" sourceRef="ExclusiveGateway_05indeh" targetRef="DoRollbackService_CallActivity">
310 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{ execution.getVariable("DCRESI_rollbackData") != null }]]></bpmn2:conditionExpression>
311 </bpmn2:sequenceFlow>
312 <bpmn2:sequenceFlow id="SequenceFlow_00by7l7" name="No" sourceRef="ExclusiveGateway_0y158bb" targetRef="InclusiveGateway_0m9f5ka" />
313 <bpmn2:sequenceFlow id="SequenceFlow_17cz98f" name="Yes" sourceRef="ExclusiveGateway_0y158bb" targetRef="ExclusiveGateway_05indeh">
314 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{ execution.getVariable("DCARTXC_rollbackSuccessful") == true }]]></bpmn2:conditionExpression>
315 </bpmn2:sequenceFlow>
316 <bpmn2:callActivity id="CallActivity_1cl4iu4" name="DoRollback&#10;VNF and Modules&#10;" calledElement="DoCreateVnfAndModulesRollback">
317 <bpmn2:extensionElements>
318 <camunda:in source="msoRequestId" target="msoRequestId" />
319 <camunda:in source="DCVAM_rollbackData" target="rollbackData" />
320 <camunda:out source="rollbackSuccessful" target="DCVAM_rollbackSuccessful" />
321 <camunda:out source="rollbackError" target="DCVAM_rollbackError" />
322 <camunda:in source="sdncVersion" target="sdncVersion" />
323 </bpmn2:extensionElements>
324 <bpmn2:incoming>SequenceFlow_007p8k3</bpmn2:incoming>
325 <bpmn2:outgoing>SequenceFlow_1mpsdaj</bpmn2:outgoing>
326 </bpmn2:callActivity>
327 <bpmn2:sequenceFlow id="SequenceFlow_1mpsdaj" sourceRef="CallActivity_1cl4iu4" targetRef="ExclusiveGateway_05dg1m1" />
328 <bpmn2:sequenceFlow id="SequenceFlow_007p8k3" name="Yes" sourceRef="ExclusiveGateway_14tl857" targetRef="CallActivity_1cl4iu4">
329 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("DCVAM_rollbackData") != null }]]></bpmn2:conditionExpression>
330 </bpmn2:sequenceFlow>
331 </bpmn2:subProcess>
332 <bpmn2:scriptTask id="prepareCreateService_scriptTask" name="Prepare&#10;Create&#10;Service&#10;" scriptFormat="groovy">
333 <bpmn2:incoming>SequenceFlow_15odbkz</bpmn2:incoming>
334 <bpmn2:outgoing>SequenceFlow_0j6sjye</bpmn2:outgoing>
335 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.vcpe.scripts.*
336def CreateVcpeResCustService = new CreateVcpeResCustService()
337CreateVcpeResCustService.prepareCreateServiceInstance(execution)]]></bpmn2:script>
338 </bpmn2:scriptTask>
339 <bpmn2:scriptTask id="setPONR_ScriptTask" name="set PONR">
340 <bpmn2:incoming>SequenceFlow_12ilko1</bpmn2:incoming>
341 <bpmn2:outgoing>SequenceFlow_0afe2pg</bpmn2:outgoing>
342 <bpmn2:script><![CDATA[#{execution.setVariable("PONR", true)}]]></bpmn2:script>
343 </bpmn2:scriptTask>
344 <bpmn2:sequenceFlow id="SequenceFlow_12ilko1" sourceRef="IntermediateCatchEvent_4" targetRef="setPONR_ScriptTask" />
345 <bpmn2:sequenceFlow id="SequenceFlow_0afe2pg" sourceRef="setPONR_ScriptTask" targetRef="postProcessAndCompletionRequest_ScriptTask" />
346 <bpmn2:intermediateThrowEvent id="IntermediateThrowEvent_0prlju0" name="GoTo StartService">
347 <bpmn2:incoming>SequenceFlow_1jbuf1t</bpmn2:incoming>
348 <bpmn2:linkEventDefinition name="StartService" />
349 </bpmn2:intermediateThrowEvent>
350 <bpmn2:sequenceFlow id="SequenceFlow_0j6sjye" sourceRef="prepareCreateService_scriptTask" targetRef="doCreateServiceInstance_CallActivity" />
351 <bpmn2:serviceTask id="updateInfraRequest" name="Update DB status to SUCCESS">
352 <bpmn2:extensionElements>
353 <camunda:connector>
354 <camunda:inputOutput>
355 <camunda:inputParameter name="url">${URN_mso_adapters_db_endpoint}</camunda:inputParameter>
356 <camunda:inputParameter name="payload"><![CDATA[${execution.getVariable("CVRCS_setUpdateDbInstancePayload")}]]></camunda:inputParameter>
357 <camunda:inputParameter name="headers">
358 <camunda:map>
359 <camunda:entry key="content-type">application/soap+xml</camunda:entry>
360 <camunda:entry key="Authorization">#{BasicAuthHeaderValueDB}</camunda:entry>
361 </camunda:map>
362 </camunda:inputParameter>
363 <camunda:inputParameter name="method">POST</camunda:inputParameter>
364 </camunda:inputOutput>
365 <camunda:connectorId>soap-http-connector</camunda:connectorId>
366 </camunda:connector>
367 </bpmn2:extensionElements>
368 <bpmn2:incoming>SequenceFlow_0vj46ej</bpmn2:incoming>
369 <bpmn2:outgoing>SequenceFlow_13uceka</bpmn2:outgoing>
370 </bpmn2:serviceTask>
371 <bpmn2:sequenceFlow id="SequenceFlow_13uceka" sourceRef="updateInfraRequest" targetRef="IntermediateThrowEvent_1as6hoa" />
372 <bpmn2:scriptTask id="ScriptTask_1qd3uwb" name="PostProcess&#10;Create&#10;Service&#10;" scriptFormat="groovy">
373 <bpmn2:incoming>SequenceFlow_1ky2sv9</bpmn2:incoming>
374 <bpmn2:outgoing>SequenceFlow_0vj46ej</bpmn2:outgoing>
375 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.vcpe.scripts.*
376def CreateVcpeResCustService = new CreateVcpeResCustService()
377CreateVcpeResCustService.postProcessServiceInstanceCreate(execution)]]></bpmn2:script>
378 </bpmn2:scriptTask>
379 <bpmn2:sequenceFlow id="SequenceFlow_1ky2sv9" sourceRef="doCreateServiceInstance_CallActivity" targetRef="ScriptTask_1qd3uwb" />
380 <bpmn2:sequenceFlow id="SequenceFlow_0vj46ej" sourceRef="ScriptTask_1qd3uwb" targetRef="updateInfraRequest" />
381 <bpmn2:callActivity id="DecomposeService" name="Call Decompose Service" calledElement="DecomposeService">
382 <bpmn2:extensionElements>
383 <camunda:in source="msoRequestId" target="msoRequestId" />
384 <camunda:in source="serviceInstanceId" target="serviceInstanceId" />
385 <camunda:in source="serviceModelInfo" target="serviceModelInfo" />
386 <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" />
387 <camunda:out source="serviceDecomposition" target="serviceDecomposition" />
388 <camunda:out source="WorkflowException" target="WorkflowException" />
389 </bpmn2:extensionElements>
390 <bpmn2:incoming>SequenceFlow_00h6hmd</bpmn2:incoming>
391 <bpmn2:outgoing>SequenceFlow_17g05fd</bpmn2:outgoing>
392 </bpmn2:callActivity>
393 <bpmn2:scriptTask id="ScriptTask_0cdtchu" name="Prepare&#10;Decompose&#10;Service&#10;" scriptFormat="groovy">
394 <bpmn2:incoming>SequenceFlow_1eu60rt</bpmn2:incoming>
395 <bpmn2:outgoing>SequenceFlow_00h6hmd</bpmn2:outgoing>
396 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.vcpe.scripts.*
397def CreateVcpeResCustService = new CreateVcpeResCustService()
398CreateVcpeResCustService.prepareDecomposeService(execution)]]></bpmn2:script>
399 </bpmn2:scriptTask>
400 <bpmn2:sequenceFlow id="SequenceFlow_1eu60rt" sourceRef="IntermediateCatchEvent_3" targetRef="ScriptTask_0cdtchu" />
401 <bpmn2:sequenceFlow id="SequenceFlow_00h6hmd" sourceRef="ScriptTask_0cdtchu" targetRef="DecomposeService" />
402 <bpmn2:scriptTask id="ScriptTask_0vf9bei" name="Prepare to create Allotted Resources TXC" scriptFormat="groovy">
403 <bpmn2:incoming>SequenceFlow_0x9pjgm</bpmn2:incoming>
404 <bpmn2:outgoing>SequenceFlow_1kgaq0j</bpmn2:outgoing>
405 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.vcpe.scripts.*
406def CreateVcpeResCustService = new CreateVcpeResCustService()
407CreateVcpeResCustService.prepareCreateAllottedResourceTXC(execution)]]></bpmn2:script>
408 </bpmn2:scriptTask>
409 <bpmn2:intermediateCatchEvent id="IntermediateCatchEvent_110rm9l" name="CreateAllottedResourcesTXC">
410 <bpmn2:outgoing>SequenceFlow_0x9pjgm</bpmn2:outgoing>
411 <bpmn2:linkEventDefinition name="CreateAllottedResourcesTXC" />
412 </bpmn2:intermediateCatchEvent>
413 <bpmn2:sequenceFlow id="SequenceFlow_0x9pjgm" sourceRef="IntermediateCatchEvent_110rm9l" targetRef="ScriptTask_0vf9bei" />
414 <bpmn2:exclusiveGateway id="ExclusiveGateway_1oudh6l" name="Create TXC AR?" default="SequenceFlow_0ofjahh">
415 <bpmn2:incoming>SequenceFlow_1kgaq0j</bpmn2:incoming>
416 <bpmn2:outgoing>SequenceFlow_0ofjahh</bpmn2:outgoing>
417 <bpmn2:outgoing>SequenceFlow_16qob4p</bpmn2:outgoing>
418 </bpmn2:exclusiveGateway>
419 <bpmn2:exclusiveGateway id="ExclusiveGateway_074qh5g">
420 <bpmn2:incoming>SequenceFlow_0ofjahh</bpmn2:incoming>
421 <bpmn2:incoming>SequenceFlow_1cgpklo</bpmn2:incoming>
422 <bpmn2:outgoing>SequenceFlow_0o6tf9p</bpmn2:outgoing>
423 </bpmn2:exclusiveGateway>
424 <bpmn2:sequenceFlow id="SequenceFlow_0ofjahh" name="No" sourceRef="ExclusiveGateway_1oudh6l" targetRef="ExclusiveGateway_074qh5g" />
425 <bpmn2:sequenceFlow id="SequenceFlow_1kgaq0j" sourceRef="ScriptTask_0vf9bei" targetRef="ExclusiveGateway_1oudh6l" />
426 <bpmn2:sequenceFlow id="SequenceFlow_16qob4p" name="Yes" sourceRef="ExclusiveGateway_1oudh6l" targetRef="CallActivity_1ymzucb">
427 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{ execution.getVariable("createTXCAR") != null && execution.getVariable("createTXCAR") == true }]]></bpmn2:conditionExpression>
428 </bpmn2:sequenceFlow>
429 <bpmn2:intermediateCatchEvent id="IntermediateCatchEvent_1i1nwfx" name="StartService">
430 <bpmn2:outgoing>SequenceFlow_15odbkz</bpmn2:outgoing>
431 <bpmn2:linkEventDefinition name="StartService" />
432 </bpmn2:intermediateCatchEvent>
433 <bpmn2:intermediateThrowEvent id="IntermediateThrowEvent_1as6hoa" name="GoToCreateAllottedResourcesTXC">
434 <bpmn2:incoming>SequenceFlow_13uceka</bpmn2:incoming>
435 <bpmn2:linkEventDefinition name="CreateAllottedResourcesTXC" />
436 </bpmn2:intermediateThrowEvent>
437 <bpmn2:sequenceFlow id="SequenceFlow_15odbkz" sourceRef="IntermediateCatchEvent_1i1nwfx" targetRef="prepareCreateService_scriptTask" />
438 <bpmn2:callActivity id="Task_1l0uvof" name="Call Homing Service" camunda:modelerTemplate="homingBlock" calledElement="Homing">
439 <bpmn2:extensionElements>
440 <camunda:in source="true" target="isDebugLogEnabled" />
441 <camunda:in source="null" target="timeout" />
442 <camunda:out source="serviceDecomposition" target="serviceDecomposition" />
443 <camunda:out source="rolledBack" target="rolledBack" />
444 <camunda:out source="rollbackData" target="rollbackData" />
445 <camunda:out source="WorkflowException" target="WorkflowException" />
446 <camunda:in source="msoRequestId" target="msoRequestId" />
447 <camunda:in source="serviceInstanceId" target="serviceInstanceId" />
448 <camunda:in source="serviceDecomposition" target="serviceDecomposition" />
449 <camunda:in source="subscriberInfo" target="subscriberInfo" />
450 </bpmn2:extensionElements>
451 <bpmn2:incoming>SequenceFlow_17g05fd</bpmn2:incoming>
452 <bpmn2:outgoing>SequenceFlow_1jbuf1t</bpmn2:outgoing>
453 </bpmn2:callActivity>
454 <bpmn2:sequenceFlow id="SequenceFlow_1jbuf1t" sourceRef="Task_1l0uvof" targetRef="IntermediateThrowEvent_0prlju0" />
455 <bpmn2:sequenceFlow id="SequenceFlow_17g05fd" sourceRef="DecomposeService" targetRef="Task_1l0uvof" />
456 <bpmn2:intermediateCatchEvent id="IntermediateCatchEvent_17pzn7m" name="CreateAllottedResourcesBRG">
457 <bpmn2:outgoing>SequenceFlow_15vce9o</bpmn2:outgoing>
458 <bpmn2:linkEventDefinition name="CreateAllottedResourcesBRG" />
459 </bpmn2:intermediateCatchEvent>
460 <bpmn2:intermediateThrowEvent id="IntermediateThrowEvent_0lt5ltv" name="GoToFinishProcess">
461 <bpmn2:incoming>SequenceFlow_0hwsm6n</bpmn2:incoming>
462 <bpmn2:linkEventDefinition name="FinishProcess" />
463 </bpmn2:intermediateThrowEvent>
464 <bpmn2:exclusiveGateway id="ExclusiveGateway_1xwfgxs" name="Create BRG AR?" default="SequenceFlow_0loks1u">
465 <bpmn2:incoming>SequenceFlow_0yecpl2</bpmn2:incoming>
466 <bpmn2:outgoing>SequenceFlow_0loks1u</bpmn2:outgoing>
467 <bpmn2:outgoing>SequenceFlow_0b5ztoe</bpmn2:outgoing>
468 </bpmn2:exclusiveGateway>
469 <bpmn2:exclusiveGateway id="ExclusiveGateway_0jqgskx">
470 <bpmn2:incoming>SequenceFlow_0loks1u</bpmn2:incoming>
471 <bpmn2:incoming>SequenceFlow_0e9e6fo</bpmn2:incoming>
472 <bpmn2:outgoing>SequenceFlow_0hwsm6n</bpmn2:outgoing>
473 </bpmn2:exclusiveGateway>
474 <bpmn2:callActivity id="CallActivity_0xt1l8t" name="Call Create BRG Allotted Resource&#10;" calledElement="DoCreateAllottedResourceBRG">
475 <bpmn2:extensionElements>
476 <camunda:in source="msoRequestId" target="msoRequestId" />
477 <camunda:in source="disableRollback" target="disableRollback" />
478 <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" />
479 <camunda:in source="failExists" target="failExists" />
480 <camunda:in source="serviceInstanceId" target="serviceInstanceId" />
481 <camunda:in source="parentServiceInstanceIdBRG" target="parentServiceInstanceId" />
482 <camunda:in source="allottedResourceIdBRG" target="allottedResourceId" />
483 <camunda:in source="allottedResourceModelInfoBRG" target="allottedResourceModelInfo" />
484 <camunda:in source="allottedResourceRoleBRG" target="allottedResourceRole" />
485 <camunda:out source="rollbackData" target="DCARBRG_rollbackData" />
486 <camunda:out source="rolledBack" target="rolledBack" />
487 <camunda:out source="WorkflowException" target="WorkflowException" />
488 <camunda:out source="allottedResourceId" target="DCARBRG_allottedResourceId" />
489 <camunda:out source="allottedResourceName" target="DCARBRG_allottedResourceName" />
490 <camunda:in source="allottedResourceTypeBRG" target="allottedResourceType" />
491 <camunda:in source="vni" target="vni" />
492 <camunda:in source="vgmuxBearerIP" target="vgmuxBearerIP" />
493 <camunda:in source="brgWanMacAddress" target="brgWanMacAddress" />
494 </bpmn2:extensionElements>
495 <bpmn2:incoming>SequenceFlow_0b5ztoe</bpmn2:incoming>
496 <bpmn2:outgoing>SequenceFlow_0e9e6fo</bpmn2:outgoing>
497 </bpmn2:callActivity>
498 <bpmn2:sequenceFlow id="SequenceFlow_0hwsm6n" sourceRef="ExclusiveGateway_0jqgskx" targetRef="IntermediateThrowEvent_0lt5ltv" />
499 <bpmn2:sequenceFlow id="SequenceFlow_0loks1u" name="No" sourceRef="ExclusiveGateway_1xwfgxs" targetRef="ExclusiveGateway_0jqgskx" />
500 <bpmn2:sequenceFlow id="SequenceFlow_0b5ztoe" name="Yes" sourceRef="ExclusiveGateway_1xwfgxs" targetRef="CallActivity_0xt1l8t">
501 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{ execution.getVariable("createBRGAR") != null && execution.getVariable("createBRGAR") == true }]]></bpmn2:conditionExpression>
502 </bpmn2:sequenceFlow>
503 <bpmn2:sequenceFlow id="SequenceFlow_0e9e6fo" sourceRef="CallActivity_0xt1l8t" targetRef="ExclusiveGateway_0jqgskx" />
504 <bpmn2:scriptTask id="ScriptTask_05epj75" name="Prepare to create Allotted Resources BRG" scriptFormat="groovy">
505 <bpmn2:incoming>SequenceFlow_15vce9o</bpmn2:incoming>
506 <bpmn2:outgoing>SequenceFlow_0yecpl2</bpmn2:outgoing>
507 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.vcpe.scripts.*
508def CreateVcpeResCustService = new CreateVcpeResCustService()
509CreateVcpeResCustService.prepareCreateAllottedResourceBRG(execution)]]></bpmn2:script>
510 </bpmn2:scriptTask>
511 <bpmn2:sequenceFlow id="SequenceFlow_15vce9o" sourceRef="IntermediateCatchEvent_17pzn7m" targetRef="ScriptTask_05epj75" />
512 <bpmn2:sequenceFlow id="SequenceFlow_0yecpl2" sourceRef="ScriptTask_05epj75" targetRef="ExclusiveGateway_1xwfgxs" />
513 <bpmn2:intermediateThrowEvent id="IntermediateThrowEvent_09vobbc" name="GoToCreateVG">
514 <bpmn2:incoming>SequenceFlow_0o6tf9p</bpmn2:incoming>
515 <bpmn2:linkEventDefinition name="CreateVG" />
516 </bpmn2:intermediateThrowEvent>
517 <bpmn2:sequenceFlow id="SequenceFlow_0o6tf9p" sourceRef="ExclusiveGateway_074qh5g" targetRef="IntermediateThrowEvent_09vobbc" />
518 <bpmn2:callActivity id="CallActivity_1els13v" name="DoCreate&#10;VNF and Modules&#10;" calledElement="DoCreateVnfAndModules">
519 <bpmn2:extensionElements>
520 <camunda:in source="msoRequestId" target="msoRequestId" />
521 <camunda:in source="disableRollback" target="disableRollback" />
522 <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" />
523 <camunda:in source="serviceInstanceId" target="serviceInstanceId" />
524 <camunda:in source="productFamilyId" target="productFamilyId" />
525 <camunda:in source="vnfModelInfo" target="vnfModelInfo" />
526 <camunda:in source="lcpCloudRegionId" target="lcpCloudRegionId" />
527 <camunda:in source="tenantId" target="tenantId" />
528 <camunda:in source="sdncVersion" target="sdncVersion" />
529 <camunda:out source="rollbackData" target="DCVAM_rollbackData" />
530 <camunda:out source="WorkflowException" target="WorkflowException" />
531 <camunda:out source="vnfId" target="vnfId" />
532 <camunda:out source="vnfName" target="vnfName" />
533 <camunda:out source="vnfOutputParams" target="vnfOutputParams" />
534 <camunda:out source="rolledBack" target="rolledBack" />
535 <camunda:in source="serviceModelInfo" target="serviceModelInfo" />
536 <camunda:in source="globalSubscriberId" target="globalSubscriberId" />
537 <camunda:in source="serviceDecomposition" target="serviceDecomposition" />
538 </bpmn2:extensionElements>
539 <bpmn2:incoming>SequenceFlow_0ws7fjn</bpmn2:incoming>
540 <bpmn2:outgoing>SequenceFlow_1mkdhw9</bpmn2:outgoing>
541 </bpmn2:callActivity>
542 <bpmn2:scriptTask id="ScriptTask_0n1k77c" name="Prepare to Create VNF" scriptFormat="groovy">
543 <bpmn2:incoming>SequenceFlow_0p75l97</bpmn2:incoming>
544 <bpmn2:outgoing>SequenceFlow_0ws7fjn</bpmn2:outgoing>
545 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infra.scripts.*
546def CreateVcpeResCustService= new CreateVcpeResCustService()
547CreateVcpeResCustService.prepareVnfAndModulesCreate(execution)]]></bpmn2:script>
548 </bpmn2:scriptTask>
549 <bpmn2:intermediateThrowEvent id="IntermediateThrowEvent_1xsowxp" name="GoToCreateAllottedResourcesBRG">
550 <bpmn2:incoming>SequenceFlow_1ufio7c</bpmn2:incoming>
551 <bpmn2:linkEventDefinition name="CreateAllottedResourcesBRG" />
552 </bpmn2:intermediateThrowEvent>
553 <bpmn2:intermediateCatchEvent id="IntermediateCatchEvent_19a50jz" name="CreateVG">
554 <bpmn2:outgoing>SequenceFlow_0aza7xq</bpmn2:outgoing>
555 <bpmn2:linkEventDefinition name="CreateVG" />
556 </bpmn2:intermediateCatchEvent>
557 <bpmn2:exclusiveGateway id="ExclusiveGateway_0yae9sb" name="Create VNF?" default="SequenceFlow_13iuk3s">
558 <bpmn2:incoming>SequenceFlow_0aza7xq</bpmn2:incoming>
559 <bpmn2:outgoing>SequenceFlow_0p75l97</bpmn2:outgoing>
560 <bpmn2:outgoing>SequenceFlow_13iuk3s</bpmn2:outgoing>
561 </bpmn2:exclusiveGateway>
562 <bpmn2:exclusiveGateway id="ExclusiveGateway_1hlbkue">
563 <bpmn2:incoming>SequenceFlow_1mkdhw9</bpmn2:incoming>
564 <bpmn2:incoming>SequenceFlow_13iuk3s</bpmn2:incoming>
565 <bpmn2:outgoing>SequenceFlow_1ufio7c</bpmn2:outgoing>
566 </bpmn2:exclusiveGateway>
567 <bpmn2:sequenceFlow id="SequenceFlow_0ws7fjn" sourceRef="ScriptTask_0n1k77c" targetRef="CallActivity_1els13v" />
568 <bpmn2:sequenceFlow id="SequenceFlow_1mkdhw9" name="in 1702 scope only one VNF will be created - if needed" sourceRef="CallActivity_1els13v" targetRef="ExclusiveGateway_1hlbkue">
569 <bpmn2:documentation>in 1702 scope only one VNF will be created</bpmn2:documentation>
570 </bpmn2:sequenceFlow>
571 <bpmn2:sequenceFlow id="SequenceFlow_0p75l97" name="Yes" sourceRef="ExclusiveGateway_0yae9sb" targetRef="ScriptTask_0n1k77c">
572 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("CVRCS_VNFsCount") >0}]]></bpmn2:conditionExpression>
573 </bpmn2:sequenceFlow>
574 <bpmn2:sequenceFlow id="SequenceFlow_1ufio7c" sourceRef="ExclusiveGateway_1hlbkue" targetRef="IntermediateThrowEvent_1xsowxp" />
575 <bpmn2:sequenceFlow id="SequenceFlow_0aza7xq" sourceRef="IntermediateCatchEvent_19a50jz" targetRef="ExclusiveGateway_0yae9sb" />
576 <bpmn2:sequenceFlow id="SequenceFlow_13iuk3s" name="No" sourceRef="ExclusiveGateway_0yae9sb" targetRef="ExclusiveGateway_1hlbkue" />
577 <bpmn2:callActivity id="CallActivity_1ymzucb" name="Call Create TXC Allotted Resource&#10;" calledElement="DoCreateAllottedResourceTXC">
578 <bpmn2:extensionElements>
579 <camunda:in source="msoRequestId" target="msoRequestId" />
580 <camunda:in source="disableRollback" target="disableRollback" />
581 <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" />
582 <camunda:in source="failExists" target="failExists" />
583 <camunda:in source="serviceInstanceId" target="serviceInstanceId" />
584 <camunda:in source="parentServiceInstanceIdTXC" target="parentServiceInstanceId" />
585 <camunda:in source="serviceChainServiceInstanceId" target="serviceChainServiceInstanceId" />
586 <camunda:in source="allottedResourceIdTXC" target="allottedResourceId" />
587 <camunda:in source="allottedResourceModelInfoTXC" target="allottedResourceModelInfo" />
588 <camunda:in source="allottedResourceRoleTXC" target="allottedResourceRole" />
589 <camunda:out source="rollbackData" target="DCARTXC_rollbackData" />
590 <camunda:out source="rolledBack" target="rolledBack" />
591 <camunda:out source="WorkflowException" target="WorkflowException" />
592 <camunda:out source="allottedResourceId" target="DCARTXC_allottedResourceId" />
593 <camunda:out source="vni" target="vni" />
594 <camunda:out source="vgmuxBearerIP" target="vgmuxBearerIP" />
595 <camunda:out source="vgmuxLanIP" target="vgmuxLanIP" />
596 <camunda:in source="allottedResourceTypeTXC" target="allottedResourceType" />
597 <camunda:in source="brgWanMacAddress" target="brgWanMacAddress" />
598 </bpmn2:extensionElements>
599 <bpmn2:incoming>SequenceFlow_16qob4p</bpmn2:incoming>
600 <bpmn2:outgoing>SequenceFlow_1cgpklo</bpmn2:outgoing>
601 </bpmn2:callActivity>
602 <bpmn2:sequenceFlow id="SequenceFlow_1cgpklo" sourceRef="CallActivity_1ymzucb" targetRef="ExclusiveGateway_074qh5g" />
603 </bpmn2:process>
604 <bpmn2:error id="Error_2" name="MSOWorkflowException" errorCode="MSOWorkflowException" />
605 <bpmn2:error id="Error_1" name="java.lang.Exception" errorCode="java.lang.Exception" />
606 <bpmndi:BPMNDiagram id="BPMNDiagram_1">
607 <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="CreateVcpeResCustService">
608 <bpmndi:BPMNShape id="_BPMNShape_StartEvent_47" bpmnElement="createVCPE_startEvent">
609 <dc:Bounds x="87" y="215" width="36" height="36" />
610 <bpmndi:BPMNLabel>
611 <dc:Bounds x="80" y="256" width="51" height="14" />
612 </bpmndi:BPMNLabel>
613 </bpmndi:BPMNShape>
614 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_61" bpmnElement="preProcessRequest_ScriptTask">
615 <dc:Bounds x="276" y="193" width="100" height="80" />
616 </bpmndi:BPMNShape>
617 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_1" bpmnElement="SequenceFlow_1" sourceElement="_BPMNShape_StartEvent_47" targetElement="_BPMNShape_ScriptTask_61">
618 <di:waypoint xsi:type="dc:Point" x="123" y="233" />
619 <di:waypoint xsi:type="dc:Point" x="276" y="233" />
620 <bpmndi:BPMNLabel>
621 <dc:Bounds x="165" y="233" width="0" height="0" />
622 </bpmndi:BPMNLabel>
623 </bpmndi:BPMNEdge>
624 <bpmndi:BPMNShape id="_BPMNShape_CallActivity_4" bpmnElement="callCompleteMsoProcess_CallActivity">
625 <dc:Bounds x="763" y="1432" width="100" height="80" />
626 </bpmndi:BPMNShape>
627 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_80" bpmnElement="postProcessAndCompletionRequest_ScriptTask">
628 <dc:Bounds x="490" y="1432" width="100" height="80" />
629 </bpmndi:BPMNShape>
630 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_12" bpmnElement="SequenceFlow_7" sourceElement="_BPMNShape_ScriptTask_61" targetElement="_BPMNShape_ScriptTask_127">
631 <di:waypoint xsi:type="dc:Point" x="376" y="233" />
632 <di:waypoint xsi:type="dc:Point" x="467" y="233" />
633 <bpmndi:BPMNLabel>
634 <dc:Bounds x="265" y="194" width="0" height="0" />
635 </bpmndi:BPMNLabel>
636 </bpmndi:BPMNEdge>
637 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_127" bpmnElement="sendSyncAckResponse_ScriptTask">
638 <dc:Bounds x="467" y="193" width="100" height="80" />
639 </bpmndi:BPMNShape>
640 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_42" bpmnElement="SequenceFlow_29" sourceElement="_BPMNShape_ScriptTask_80" targetElement="_BPMNShape_CallActivity_4">
641 <di:waypoint xsi:type="dc:Point" x="590" y="1472" />
642 <di:waypoint xsi:type="dc:Point" x="763" y="1472" />
643 <bpmndi:BPMNLabel>
644 <dc:Bounds x="677" y="1457" width="0" height="0" />
645 </bpmndi:BPMNLabel>
646 </bpmndi:BPMNEdge>
647 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_177" bpmnElement="CreateVCPE_EndEvent">
648 <dc:Bounds x="1262" y="1452" width="36" height="36" />
649 <bpmndi:BPMNLabel>
650 <dc:Bounds x="1269" y="1493" width="21" height="14" />
651 </bpmndi:BPMNLabel>
652 </bpmndi:BPMNShape>
653 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_8" bpmnElement="SequenceFlow_8" sourceElement="_BPMNShape_CallActivity_4" targetElement="_BPMNShape_ScriptTask_337">
654 <di:waypoint xsi:type="dc:Point" x="863" y="1472" />
655 <di:waypoint xsi:type="dc:Point" x="1071" y="1471" />
656 <bpmndi:BPMNLabel>
657 <dc:Bounds x="967" y="1457" width="0" height="0" />
658 </bpmndi:BPMNLabel>
659 </bpmndi:BPMNEdge>
660 <bpmndi:BPMNShape id="_BPMNShape_SubProcess_27" bpmnElement="UnexpectedError_SubProcess_1" isExpanded="true">
661 <dc:Bounds x="1257" y="1702" width="409" height="232" />
662 </bpmndi:BPMNShape>
663 <bpmndi:BPMNShape id="_BPMNShape_StartEvent_70" bpmnElement="StartEvent_1">
664 <dc:Bounds x="1325" y="1807" width="36" height="36" />
665 <bpmndi:BPMNLabel>
666 <dc:Bounds x="1343" y="1848" width="0" height="0" />
667 </bpmndi:BPMNLabel>
668 </bpmndi:BPMNShape>
669 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_269" bpmnElement="ScriptTask_1">
670 <dc:Bounds x="1400" y="1785" width="100" height="80" />
671 </bpmndi:BPMNShape>
672 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_219" bpmnElement="EndEvent_1">
673 <dc:Bounds x="1553" y="1807" width="36" height="36" />
674 <bpmndi:BPMNLabel>
675 <dc:Bounds x="1571" y="1848" width="0" height="0" />
676 </bpmndi:BPMNLabel>
677 </bpmndi:BPMNShape>
678 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_4" bpmnElement="SequenceFlow_2" sourceElement="_BPMNShape_StartEvent_70" targetElement="_BPMNShape_ScriptTask_269">
679 <di:waypoint xsi:type="dc:Point" x="1361" y="1825" />
680 <di:waypoint xsi:type="dc:Point" x="1400" y="1825" />
681 <bpmndi:BPMNLabel>
682 <dc:Bounds x="1389" y="1825" width="0" height="0" />
683 </bpmndi:BPMNLabel>
684 </bpmndi:BPMNEdge>
685 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_5" bpmnElement="SequenceFlow_5" sourceElement="_BPMNShape_ScriptTask_269" targetElement="_BPMNShape_EndEvent_219">
686 <di:waypoint xsi:type="dc:Point" x="1500" y="1825" />
687 <di:waypoint xsi:type="dc:Point" x="1533" y="1825" />
688 <di:waypoint xsi:type="dc:Point" x="1533" y="1825" />
689 <di:waypoint xsi:type="dc:Point" x="1553" y="1825" />
690 <bpmndi:BPMNLabel>
691 <dc:Bounds x="1548" y="1825" width="0" height="0" />
692 </bpmndi:BPMNLabel>
693 </bpmndi:BPMNEdge>
694 <bpmndi:BPMNShape id="_BPMNShape_CallActivity_75" bpmnElement="doCreateServiceInstance_CallActivity">
695 <dc:Bounds x="456" y="543" width="100" height="80" />
696 </bpmndi:BPMNShape>
697 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_2" bpmnElement="SequenceFlow_3" sourceElement="_BPMNShape_ScriptTask_127">
698 <di:waypoint xsi:type="dc:Point" x="567" y="233" />
699 <di:waypoint xsi:type="dc:Point" x="719" y="233" />
700 <bpmndi:BPMNLabel>
701 <dc:Bounds x="643" y="218" width="0" height="0" />
702 </bpmndi:BPMNLabel>
703 </bpmndi:BPMNEdge>
704 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_337" bpmnElement="ScriptTask_2">
705 <dc:Bounds x="1071" y="1431" width="100" height="80" />
706 </bpmndi:BPMNShape>
707 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_3" bpmnElement="SequenceFlow_6" sourceElement="_BPMNShape_ScriptTask_337" targetElement="_BPMNShape_EndEvent_177">
708 <di:waypoint xsi:type="dc:Point" x="1171" y="1470" />
709 <di:waypoint xsi:type="dc:Point" x="1262" y="1470" />
710 <bpmndi:BPMNLabel>
711 <dc:Bounds x="1217" y="1455" width="0" height="0" />
712 </bpmndi:BPMNLabel>
713 </bpmndi:BPMNEdge>
714 <bpmndi:BPMNShape id="_BPMNShape_IntermediateCatchEvent_35" bpmnElement="IntermediateCatchEvent_3">
715 <dc:Bounds x="87" y="370" width="36" height="36" />
716 <bpmndi:BPMNLabel>
717 <dc:Bounds x="80" y="406" width="50" height="14" />
718 </bpmndi:BPMNLabel>
719 </bpmndi:BPMNShape>
720 <bpmndi:BPMNShape id="_BPMNShape_IntermediateCatchEvent_36" bpmnElement="IntermediateCatchEvent_4">
721 <dc:Bounds x="60" y="1454" width="36" height="36" />
722 <bpmndi:BPMNLabel>
723 <dc:Bounds x="39" y="1490" width="78" height="14" />
724 </bpmndi:BPMNLabel>
725 </bpmndi:BPMNShape>
726 <bpmndi:BPMNShape id="_BPMNShape_IntermediateThrowEvent_49" bpmnElement="IntermediateThrowEvent_2">
727 <dc:Bounds x="719" y="215" width="36" height="36" />
728 <bpmndi:BPMNLabel>
729 <dc:Bounds x="697" y="256" width="79" height="14" />
730 </bpmndi:BPMNLabel>
731 </bpmndi:BPMNShape>
732 <bpmndi:BPMNShape id="SubProcess_0s6hpty_di" bpmnElement="SubProcess_0s6hpty" isExpanded="true">
733 <dc:Bounds x="-261" y="1650" width="1482" height="1528" />
734 </bpmndi:BPMNShape>
735 <bpmndi:BPMNShape id="ExclusiveGateway_1vwgs6p_di" bpmnElement="ExclusiveGateway_1vwgs6p" isMarkerVisible="true">
736 <dc:Bounds x="55" y="2972" width="50" height="50" />
737 <bpmndi:BPMNLabel>
738 <dc:Bounds x="42" y="3032" width="79" height="12" />
739 </bpmndi:BPMNLabel>
740 </bpmndi:BPMNShape>
741 <bpmndi:BPMNShape id="StartEvent_1bwmffk_di" bpmnElement="StartEvent_1bwmffk">
742 <dc:Bounds x="-58" y="2980" width="36" height="36" />
743 <bpmndi:BPMNLabel>
744 <dc:Bounds x="-65" y="3021" width="53" height="12" />
745 </bpmndi:BPMNLabel>
746 </bpmndi:BPMNShape>
747 <bpmndi:BPMNShape id="ExclusiveGateway_0ydrtdx_di" bpmnElement="ExclusiveGateway_0ydrtdx" isMarkerVisible="true">
748 <dc:Bounds x="55" y="2889" width="50" height="50" />
749 <bpmndi:BPMNLabel>
750 <dc:Bounds x="-11" y="2904" width="48" height="12" />
751 </bpmndi:BPMNLabel>
752 </bpmndi:BPMNShape>
753 <bpmndi:BPMNShape id="ExclusiveGateway_1kvn1pz_di" bpmnElement="ExclusiveGateway_1kvn1pz" isMarkerVisible="true">
754 <dc:Bounds x="182" y="1822" width="50" height="50" />
755 <bpmndi:BPMNLabel>
756 <dc:Bounds x="114" y="1816" width="80" height="12" />
757 </bpmndi:BPMNLabel>
758 </bpmndi:BPMNShape>
759 <bpmndi:BPMNShape id="CallActivity_0jw5tqa_di" bpmnElement="CallActivity_0jw5tqa">
760 <dc:Bounds x="1028" y="2946" width="100" height="80" />
761 </bpmndi:BPMNShape>
762 <bpmndi:BPMNShape id="EndEvent_04xute7_di" bpmnElement="EndEvent_04xute7">
763 <dc:Bounds x="1165" y="2968" width="36" height="36" />
764 <bpmndi:BPMNLabel>
765 <dc:Bounds x="1138" y="3009" width="90" height="0" />
766 </bpmndi:BPMNLabel>
767 </bpmndi:BPMNShape>
768 <bpmndi:BPMNShape id="ScriptTask_0yk02h3_di" bpmnElement="ScriptTask_0yk02h3">
769 <dc:Bounds x="896" y="2946" width="100" height="80" />
770 </bpmndi:BPMNShape>
771 <bpmndi:BPMNEdge id="SequenceFlow_0zpbskl_di" bpmnElement="SequenceFlow_0zpbskl">
772 <di:waypoint xsi:type="dc:Point" x="80" y="2972" />
773 <di:waypoint xsi:type="dc:Point" x="80" y="2939" />
774 <bpmndi:BPMNLabel>
775 <dc:Bounds x="85" y="2959" width="21" height="12" />
776 </bpmndi:BPMNLabel>
777 </bpmndi:BPMNEdge>
778 <bpmndi:BPMNEdge id="SequenceFlow_0dhf2js_di" bpmnElement="SequenceFlow_0dhf2js">
779 <di:waypoint xsi:type="dc:Point" x="105" y="2997" />
780 <di:waypoint xsi:type="dc:Point" x="739" y="2997" />
781 <di:waypoint xsi:type="dc:Point" x="739" y="2939" />
782 <bpmndi:BPMNLabel>
783 <dc:Bounds x="144" y="3002" width="16" height="12" />
784 </bpmndi:BPMNLabel>
785 </bpmndi:BPMNEdge>
786 <bpmndi:BPMNEdge id="SequenceFlow_1sx5llu_di" bpmnElement="SequenceFlow_1sx5llu">
787 <di:waypoint xsi:type="dc:Point" x="105" y="2914" />
788 <di:waypoint xsi:type="dc:Point" x="410" y="2914" />
789 <di:waypoint xsi:type="dc:Point" x="410" y="2914" />
790 <di:waypoint xsi:type="dc:Point" x="714" y="2914" />
791 <bpmndi:BPMNLabel>
792 <dc:Bounds x="423" y="2918" width="21" height="12" />
793 </bpmndi:BPMNLabel>
794 </bpmndi:BPMNEdge>
795 <bpmndi:BPMNEdge id="SequenceFlow_02o4yqx_di" bpmnElement="SequenceFlow_02o4yqx">
796 <di:waypoint xsi:type="dc:Point" x="80" y="2889" />
797 <di:waypoint xsi:type="dc:Point" x="80" y="2867" />
798 <bpmndi:BPMNLabel>
799 <dc:Bounds x="90" y="2872" width="16" height="12" />
800 </bpmndi:BPMNLabel>
801 </bpmndi:BPMNEdge>
802 <bpmndi:BPMNEdge id="SequenceFlow_19mxskt_di" bpmnElement="SequenceFlow_19mxskt">
803 <di:waypoint xsi:type="dc:Point" x="207" y="1822" />
804 <di:waypoint xsi:type="dc:Point" x="207" y="1726" />
805 <di:waypoint xsi:type="dc:Point" x="686" y="1726" />
806 <di:waypoint xsi:type="dc:Point" x="686" y="1942" />
807 <bpmndi:BPMNLabel>
808 <dc:Bounds x="395.6421052631579" y="1705" width="16" height="12" />
809 </bpmndi:BPMNLabel>
810 </bpmndi:BPMNEdge>
811 <bpmndi:BPMNShape id="ScriptTask_1gacz45_di" bpmnElement="prepareCreateService_scriptTask">
812 <dc:Bounds x="250" y="543" width="100" height="80" />
813 </bpmndi:BPMNShape>
814 <bpmndi:BPMNShape id="ScriptTask_11b4gmn_di" bpmnElement="setPONR_ScriptTask">
815 <dc:Bounds x="204" y="1432" width="100" height="80" />
816 </bpmndi:BPMNShape>
817 <bpmndi:BPMNEdge id="SequenceFlow_12ilko1_di" bpmnElement="SequenceFlow_12ilko1">
818 <di:waypoint xsi:type="dc:Point" x="96" y="1472" />
819 <di:waypoint xsi:type="dc:Point" x="204" y="1472" />
820 <bpmndi:BPMNLabel>
821 <dc:Bounds x="150" y="1447" width="0" height="0" />
822 </bpmndi:BPMNLabel>
823 </bpmndi:BPMNEdge>
824 <bpmndi:BPMNEdge id="SequenceFlow_0afe2pg_di" bpmnElement="SequenceFlow_0afe2pg">
825 <di:waypoint xsi:type="dc:Point" x="304" y="1472" />
826 <di:waypoint xsi:type="dc:Point" x="447" y="1472" />
827 <di:waypoint xsi:type="dc:Point" x="490" y="1472" />
828 <bpmndi:BPMNLabel>
829 <dc:Bounds x="376" y="1457" width="0" height="0" />
830 </bpmndi:BPMNLabel>
831 </bpmndi:BPMNEdge>
832 <bpmndi:BPMNShape id="CallActivity_0oh7wzu_di" bpmnElement="DoRollbackService_CallActivity">
833 <dc:Bounds x="981" y="1927" width="100" height="80" />
834 </bpmndi:BPMNShape>
835 <bpmndi:BPMNShape id="InclusiveGateway_0foywso_di" bpmnElement="InclusiveGateway_0foywso">
836 <dc:Bounds x="714" y="2889" width="50" height="50" />
837 <bpmndi:BPMNLabel>
838 <dc:Bounds x="694" y="2944" width="90" height="0" />
839 </bpmndi:BPMNLabel>
840 </bpmndi:BPMNShape>
841 <bpmndi:BPMNEdge id="SequenceFlow_1f1hd3l_di" bpmnElement="SequenceFlow_1f1hd3l">
842 <di:waypoint xsi:type="dc:Point" x="1031" y="2007" />
843 <di:waypoint xsi:type="dc:Point" x="1031" y="2104" />
844 <bpmndi:BPMNLabel>
845 <dc:Bounds x="1001" y="2056" width="90" height="0" />
846 </bpmndi:BPMNLabel>
847 </bpmndi:BPMNEdge>
848 <bpmndi:BPMNEdge id="SequenceFlow_0jg47xm_di" bpmnElement="SequenceFlow_0jg47xm">
849 <di:waypoint xsi:type="dc:Point" x="764" y="2914" />
850 <di:waypoint xsi:type="dc:Point" x="946" y="2914" />
851 <di:waypoint xsi:type="dc:Point" x="946" y="2946" />
852 <bpmndi:BPMNLabel>
853 <dc:Bounds x="810" y="2899" width="90" height="0" />
854 </bpmndi:BPMNLabel>
855 </bpmndi:BPMNEdge>
856 <bpmndi:BPMNEdge id="SequenceFlow_0807ukc_di" bpmnElement="SequenceFlow_0807ukc">
857 <di:waypoint xsi:type="dc:Point" x="996" y="2986" />
858 <di:waypoint xsi:type="dc:Point" x="1028" y="2986" />
859 <bpmndi:BPMNLabel>
860 <dc:Bounds x="967" y="2971" width="90" height="0" />
861 </bpmndi:BPMNLabel>
862 </bpmndi:BPMNEdge>
863 <bpmndi:BPMNEdge id="SequenceFlow_19yywk8_di" bpmnElement="SequenceFlow_19yywk8">
864 <di:waypoint xsi:type="dc:Point" x="1128" y="2986" />
865 <di:waypoint xsi:type="dc:Point" x="1165" y="2986" />
866 <bpmndi:BPMNLabel>
867 <dc:Bounds x="1102" y="2971" width="90" height="0" />
868 </bpmndi:BPMNLabel>
869 </bpmndi:BPMNEdge>
870 <bpmndi:BPMNShape id="IntermediateThrowEvent_0prlju0_di" bpmnElement="IntermediateThrowEvent_0prlju0">
871 <dc:Bounds x="1056" y="370" width="36" height="36" />
872 <bpmndi:BPMNLabel>
873 <dc:Bounds x="1025" y="411" width="97" height="14" />
874 </bpmndi:BPMNLabel>
875 </bpmndi:BPMNShape>
876 <bpmndi:BPMNEdge id="SequenceFlow_0j6sjye_di" bpmnElement="SequenceFlow_0j6sjye">
877 <di:waypoint xsi:type="dc:Point" x="350" y="583" />
878 <di:waypoint xsi:type="dc:Point" x="456" y="583" />
879 <bpmndi:BPMNLabel>
880 <dc:Bounds x="403" y="568" width="0" height="0" />
881 </bpmndi:BPMNLabel>
882 </bpmndi:BPMNEdge>
883 <bpmndi:BPMNShape id="ExclusiveGateway_05indeh_di" bpmnElement="ExclusiveGateway_05indeh" isMarkerVisible="true">
884 <dc:Bounds x="661" y="1942" width="50" height="50" />
885 <bpmndi:BPMNLabel>
886 <dc:Bounds x="721" y="1924" width="85" height="24" />
887 </bpmndi:BPMNLabel>
888 </bpmndi:BPMNShape>
889 <bpmndi:BPMNEdge id="SequenceFlow_0sezboq_di" bpmnElement="SequenceFlow_0sezboq">
890 <di:waypoint xsi:type="dc:Point" x="686" y="1992" />
891 <di:waypoint xsi:type="dc:Point" x="686" y="2129" />
892 <di:waypoint xsi:type="dc:Point" x="1006" y="2129" />
893 <bpmndi:BPMNLabel>
894 <dc:Bounds x="693" y="2046" width="16" height="12" />
895 </bpmndi:BPMNLabel>
896 </bpmndi:BPMNEdge>
897 <bpmndi:BPMNShape id="ServiceTask_16yhzej_di" bpmnElement="updateInfraRequest">
898 <dc:Bounds x="794" y="543" width="100" height="80" />
899 </bpmndi:BPMNShape>
900 <bpmndi:BPMNEdge id="SequenceFlow_13uceka_di" bpmnElement="SequenceFlow_13uceka">
901 <di:waypoint xsi:type="dc:Point" x="894" y="583" />
902 <di:waypoint xsi:type="dc:Point" x="1053" y="583" />
903 <bpmndi:BPMNLabel>
904 <dc:Bounds x="974" y="568" width="0" height="0" />
905 </bpmndi:BPMNLabel>
906 </bpmndi:BPMNEdge>
907 <bpmndi:BPMNShape id="ScriptTask_1qd3uwb_di" bpmnElement="ScriptTask_1qd3uwb">
908 <dc:Bounds x="623" y="543" width="100" height="80" />
909 </bpmndi:BPMNShape>
910 <bpmndi:BPMNEdge id="SequenceFlow_1ky2sv9_di" bpmnElement="SequenceFlow_1ky2sv9">
911 <di:waypoint xsi:type="dc:Point" x="556" y="583" />
912 <di:waypoint xsi:type="dc:Point" x="623" y="583" />
913 <bpmndi:BPMNLabel>
914 <dc:Bounds x="590" y="568" width="0" height="0" />
915 </bpmndi:BPMNLabel>
916 </bpmndi:BPMNEdge>
917 <bpmndi:BPMNEdge id="SequenceFlow_0vj46ej_di" bpmnElement="SequenceFlow_0vj46ej">
918 <di:waypoint xsi:type="dc:Point" x="723" y="583" />
919 <di:waypoint xsi:type="dc:Point" x="794" y="583" />
920 <bpmndi:BPMNLabel>
921 <dc:Bounds x="759" y="568" width="0" height="0" />
922 </bpmndi:BPMNLabel>
923 </bpmndi:BPMNEdge>
924 <bpmndi:BPMNShape id="ScriptTask_17doerz_di" bpmnElement="ScriptTask_17doerz">
925 <dc:Bounds x="30" y="2787" width="100" height="80" />
926 </bpmndi:BPMNShape>
927 <bpmndi:BPMNEdge id="SequenceFlow_0zq7i3q_di" bpmnElement="SequenceFlow_0zq7i3q">
928 <di:waypoint xsi:type="dc:Point" x="-22" y="2998" />
929 <di:waypoint xsi:type="dc:Point" x="25" y="2998" />
930 <di:waypoint xsi:type="dc:Point" x="25" y="2997" />
931 <di:waypoint xsi:type="dc:Point" x="55" y="2997" />
932 <bpmndi:BPMNLabel>
933 <dc:Bounds x="-51" y="2999" width="90" height="0" />
934 </bpmndi:BPMNLabel>
935 </bpmndi:BPMNEdge>
936 <bpmndi:BPMNShape id="InclusiveGateway_0m9f5ka_di" bpmnElement="InclusiveGateway_0m9f5ka">
937 <dc:Bounds x="1006" y="2104" width="50" height="50" />
938 <bpmndi:BPMNLabel>
939 <dc:Bounds x="986" y="2159" width="90" height="0" />
940 </bpmndi:BPMNLabel>
941 </bpmndi:BPMNShape>
942 <bpmndi:BPMNShape id="ScriptTask_0wyub4x_di" bpmnElement="ScriptTask_0wyub4x">
943 <dc:Bounds x="689" y="2787" width="100" height="80" />
944 </bpmndi:BPMNShape>
945 <bpmndi:BPMNEdge id="SequenceFlow_1rabks0_di" bpmnElement="SequenceFlow_1rabks0">
946 <di:waypoint xsi:type="dc:Point" x="739" y="2867" />
947 <di:waypoint xsi:type="dc:Point" x="739" y="2889" />
948 <bpmndi:BPMNLabel>
949 <dc:Bounds x="709" y="2878" width="90" height="0" />
950 </bpmndi:BPMNLabel>
951 </bpmndi:BPMNEdge>
952 <bpmndi:BPMNShape id="CallActivity_0w2alah_di" bpmnElement="DecomposeService">
953 <dc:Bounds x="467" y="348" width="100" height="80" />
954 </bpmndi:BPMNShape>
955 <bpmndi:BPMNShape id="ScriptTask_0cdtchu_di" bpmnElement="ScriptTask_0cdtchu">
956 <dc:Bounds x="276" y="348" width="100" height="80" />
957 </bpmndi:BPMNShape>
958 <bpmndi:BPMNEdge id="SequenceFlow_1eu60rt_di" bpmnElement="SequenceFlow_1eu60rt">
959 <di:waypoint xsi:type="dc:Point" x="123" y="388" />
960 <di:waypoint xsi:type="dc:Point" x="276" y="388" />
961 <bpmndi:BPMNLabel>
962 <dc:Bounds x="200" y="373" width="0" height="0" />
963 </bpmndi:BPMNLabel>
964 </bpmndi:BPMNEdge>
965 <bpmndi:BPMNEdge id="SequenceFlow_00h6hmd_di" bpmnElement="SequenceFlow_00h6hmd">
966 <di:waypoint xsi:type="dc:Point" x="376" y="388" />
967 <di:waypoint xsi:type="dc:Point" x="467" y="388" />
968 <bpmndi:BPMNLabel>
969 <dc:Bounds x="422" y="373" width="0" height="0" />
970 </bpmndi:BPMNLabel>
971 </bpmndi:BPMNEdge>
972 <bpmndi:BPMNShape id="ScriptTask_0vf9bei_di" bpmnElement="ScriptTask_0vf9bei">
973 <dc:Bounds x="184" y="801" width="100" height="80" />
974 </bpmndi:BPMNShape>
975 <bpmndi:BPMNShape id="IntermediateCatchEvent_110rm9l_di" bpmnElement="IntermediateCatchEvent_110rm9l">
976 <dc:Bounds x="83" y="823" width="36" height="36" />
977 <bpmndi:BPMNLabel>
978 <dc:Bounds x="57" y="859" width="86" height="24" />
979 </bpmndi:BPMNLabel>
980 </bpmndi:BPMNShape>
981 <bpmndi:BPMNEdge id="SequenceFlow_0x9pjgm_di" bpmnElement="SequenceFlow_0x9pjgm">
982 <di:waypoint xsi:type="dc:Point" x="119" y="841" />
983 <di:waypoint xsi:type="dc:Point" x="184" y="841" />
984 <bpmndi:BPMNLabel>
985 <dc:Bounds x="107" y="826" width="90" height="0" />
986 </bpmndi:BPMNLabel>
987 </bpmndi:BPMNEdge>
988 <bpmndi:BPMNShape id="ExclusiveGateway_06gq6em_di" bpmnElement="ExclusiveGateway_06gq6em" isMarkerVisible="true">
989 <dc:Bounds x="55" y="2604" width="50" height="50" />
990 <bpmndi:BPMNLabel>
991 <dc:Bounds x="-33" y="2619" width="82" height="12" />
992 </bpmndi:BPMNLabel>
993 </bpmndi:BPMNShape>
994 <bpmndi:BPMNShape id="CallActivity_1bpuf2p_di" bpmnElement="CallActivity_1bpuf2p">
995 <dc:Bounds x="157" y="2519" width="100" height="80" />
996 </bpmndi:BPMNShape>
997 <bpmndi:BPMNShape id="InclusiveGateway_131ozdf_di" bpmnElement="InclusiveGateway_131ozdf">
998 <dc:Bounds x="55" y="2432" width="50" height="50" />
999 <bpmndi:BPMNLabel>
1000 <dc:Bounds x="35" y="2487" width="90" height="0" />
1001 </bpmndi:BPMNLabel>
1002 </bpmndi:BPMNShape>
1003 <bpmndi:BPMNEdge id="SequenceFlow_0orpdrl_di" bpmnElement="SequenceFlow_0orpdrl">
1004 <di:waypoint xsi:type="dc:Point" x="105" y="2629" />
1005 <di:waypoint xsi:type="dc:Point" x="207" y="2629" />
1006 <di:waypoint xsi:type="dc:Point" x="207" y="2599" />
1007 <bpmndi:BPMNLabel>
1008 <dc:Bounds x="145" y="2614" width="21" height="12" />
1009 </bpmndi:BPMNLabel>
1010 </bpmndi:BPMNEdge>
1011 <bpmndi:BPMNEdge id="SequenceFlow_1t3cnnx_di" bpmnElement="SequenceFlow_1t3cnnx">
1012 <di:waypoint xsi:type="dc:Point" x="207" y="2519" />
1013 <di:waypoint xsi:type="dc:Point" x="207" y="2482" />
1014 <bpmndi:BPMNLabel>
1015 <dc:Bounds x="177" y="2501" width="90" height="0" />
1016 </bpmndi:BPMNLabel>
1017 </bpmndi:BPMNEdge>
1018 <bpmndi:BPMNEdge id="SequenceFlow_0ya1cr3_di" bpmnElement="SequenceFlow_0ya1cr3">
1019 <di:waypoint xsi:type="dc:Point" x="80" y="2604" />
1020 <di:waypoint xsi:type="dc:Point" x="80" y="2543" />
1021 <di:waypoint xsi:type="dc:Point" x="80" y="2543" />
1022 <di:waypoint xsi:type="dc:Point" x="80" y="2482" />
1023 <bpmndi:BPMNLabel>
1024 <dc:Bounds x="92" y="2509" width="16" height="12" />
1025 </bpmndi:BPMNLabel>
1026 </bpmndi:BPMNEdge>
1027 <bpmndi:BPMNShape id="ExclusiveGateway_1oudh6l_di" bpmnElement="ExclusiveGateway_1oudh6l" isMarkerVisible="true">
1028 <dc:Bounds x="332" y="816" width="50" height="50" />
1029 <bpmndi:BPMNLabel>
1030 <dc:Bounds x="399" y="829" width="76" height="24" />
1031 </bpmndi:BPMNLabel>
1032 </bpmndi:BPMNShape>
1033 <bpmndi:BPMNShape id="ExclusiveGateway_074qh5g_di" bpmnElement="ExclusiveGateway_074qh5g" isMarkerVisible="true">
1034 <dc:Bounds x="512" y="796" width="50" height="50" />
1035 <bpmndi:BPMNLabel>
1036 <dc:Bounds x="492" y="846" width="90" height="0" />
1037 </bpmndi:BPMNLabel>
1038 </bpmndi:BPMNShape>
1039 <bpmndi:BPMNEdge id="SequenceFlow_0ofjahh_di" bpmnElement="SequenceFlow_0ofjahh">
1040 <di:waypoint xsi:type="dc:Point" x="357" y="866" />
1041 <di:waypoint xsi:type="dc:Point" x="357" y="901" />
1042 <di:waypoint xsi:type="dc:Point" x="537" y="901" />
1043 <di:waypoint xsi:type="dc:Point" x="537" y="846" />
1044 <bpmndi:BPMNLabel>
1045 <dc:Bounds x="441" y="886" width="16" height="12" />
1046 </bpmndi:BPMNLabel>
1047 </bpmndi:BPMNEdge>
1048 <bpmndi:BPMNEdge id="SequenceFlow_1kgaq0j_di" bpmnElement="SequenceFlow_1kgaq0j">
1049 <di:waypoint xsi:type="dc:Point" x="284" y="841" />
1050 <di:waypoint xsi:type="dc:Point" x="332" y="841" />
1051 <bpmndi:BPMNLabel>
1052 <dc:Bounds x="263" y="826" width="90" height="0" />
1053 </bpmndi:BPMNLabel>
1054 </bpmndi:BPMNEdge>
1055 <bpmndi:BPMNEdge id="SequenceFlow_16qob4p_di" bpmnElement="SequenceFlow_16qob4p">
1056 <di:waypoint xsi:type="dc:Point" x="357" y="816" />
1057 <di:waypoint xsi:type="dc:Point" x="357" y="730" />
1058 <di:waypoint xsi:type="dc:Point" x="400" y="730" />
1059 <bpmndi:BPMNLabel>
1060 <dc:Bounds x="362" y="763" width="21" height="12" />
1061 </bpmndi:BPMNLabel>
1062 </bpmndi:BPMNEdge>
1063 <bpmndi:BPMNShape id="ExclusiveGateway_14tl857_di" bpmnElement="ExclusiveGateway_14tl857" isMarkerVisible="true">
1064 <dc:Bounds x="55" y="2283" width="50" height="50" />
1065 <bpmndi:BPMNLabel>
1066 <dc:Bounds x="-31" y="2298" width="80" height="12" />
1067 </bpmndi:BPMNLabel>
1068 </bpmndi:BPMNShape>
1069 <bpmndi:BPMNShape id="InclusiveGateway_142br6v_di" bpmnElement="InclusiveGateway_142br6v">
1070 <dc:Bounds x="55" y="2104" width="50" height="50" />
1071 <bpmndi:BPMNLabel>
1072 <dc:Bounds x="35" y="2159" width="90" height="0" />
1073 </bpmndi:BPMNLabel>
1074 </bpmndi:BPMNShape>
1075 <bpmndi:BPMNEdge id="SequenceFlow_1kpdu1j_di" bpmnElement="SequenceFlow_1kpdu1j">
1076 <di:waypoint xsi:type="dc:Point" x="80" y="2283" />
1077 <di:waypoint xsi:type="dc:Point" x="80" y="2154" />
1078 <bpmndi:BPMNLabel>
1079 <dc:Bounds x="87" y="2219" width="16" height="12" />
1080 </bpmndi:BPMNLabel>
1081 </bpmndi:BPMNEdge>
1082 <bpmndi:BPMNShape id="ExclusiveGateway_1mjdcct_di" bpmnElement="ExclusiveGateway_1mjdcct" isMarkerVisible="true">
1083 <dc:Bounds x="182" y="2432" width="50" height="50" />
1084 <bpmndi:BPMNLabel>
1085 <dc:Bounds x="183" y="2394" width="48" height="24" />
1086 </bpmndi:BPMNLabel>
1087 </bpmndi:BPMNShape>
1088 <bpmndi:BPMNEdge id="SequenceFlow_1sim44y_di" bpmnElement="SequenceFlow_1sim44y">
1089 <di:waypoint xsi:type="dc:Point" x="182" y="2457" />
1090 <di:waypoint xsi:type="dc:Point" x="105" y="2457" />
1091 <bpmndi:BPMNLabel>
1092 <dc:Bounds x="111" y="2432" width="21" height="12" />
1093 </bpmndi:BPMNLabel>
1094 </bpmndi:BPMNEdge>
1095 <bpmndi:BPMNEdge id="SequenceFlow_0dr2fem_di" bpmnElement="SequenceFlow_0dr2fem">
1096 <di:waypoint xsi:type="dc:Point" x="231" y="2458" />
1097 <di:waypoint xsi:type="dc:Point" x="739" y="2458" />
1098 <di:waypoint xsi:type="dc:Point" x="739" y="2696" />
1099 <bpmndi:BPMNLabel>
1100 <dc:Bounds x="320" y="2437" width="16" height="12" />
1101 </bpmndi:BPMNLabel>
1102 </bpmndi:BPMNEdge>
1103 <bpmndi:BPMNShape id="ExclusiveGateway_05dg1m1_di" bpmnElement="ExclusiveGateway_05dg1m1" isMarkerVisible="true">
1104 <dc:Bounds x="182" y="2104" width="50" height="50" />
1105 <bpmndi:BPMNLabel>
1106 <dc:Bounds x="183" y="2065" width="48" height="24" />
1107 </bpmndi:BPMNLabel>
1108 </bpmndi:BPMNShape>
1109 <bpmndi:BPMNEdge id="SequenceFlow_1quvahv_di" bpmnElement="SequenceFlow_1quvahv">
1110 <di:waypoint xsi:type="dc:Point" x="182" y="2129" />
1111 <di:waypoint xsi:type="dc:Point" x="105" y="2129" />
1112 <bpmndi:BPMNLabel>
1113 <dc:Bounds x="133" y="2104" width="21" height="12" />
1114 </bpmndi:BPMNLabel>
1115 </bpmndi:BPMNEdge>
1116 <bpmndi:BPMNEdge id="SequenceFlow_1mbymcu_di" bpmnElement="SequenceFlow_1mbymcu">
1117 <di:waypoint xsi:type="dc:Point" x="232" y="2129" />
1118 <di:waypoint xsi:type="dc:Point" x="1006" y="2129" />
1119 <bpmndi:BPMNLabel>
1120 <dc:Bounds x="294" y="2098" width="16" height="12" />
1121 </bpmndi:BPMNLabel>
1122 </bpmndi:BPMNEdge>
1123 <bpmndi:BPMNShape id="IntermediateCatchEvent_1i1nwfx_di" bpmnElement="IntermediateCatchEvent_1i1nwfx">
1124 <dc:Bounds x="87" y="565" width="36" height="36" />
1125 <bpmndi:BPMNLabel>
1126 <dc:Bounds x="72" y="601" width="65" height="14" />
1127 </bpmndi:BPMNLabel>
1128 </bpmndi:BPMNShape>
1129 <bpmndi:BPMNShape id="IntermediateThrowEvent_1as6hoa_di" bpmnElement="IntermediateThrowEvent_1as6hoa">
1130 <dc:Bounds x="1056" y="565" width="36" height="36" />
1131 <bpmndi:BPMNLabel>
1132 <dc:Bounds x="1037" y="606" width="72" height="24" />
1133 </bpmndi:BPMNLabel>
1134 </bpmndi:BPMNShape>
1135 <bpmndi:BPMNEdge id="SequenceFlow_15odbkz_di" bpmnElement="SequenceFlow_15odbkz">
1136 <di:waypoint xsi:type="dc:Point" x="123" y="583" />
1137 <di:waypoint xsi:type="dc:Point" x="250" y="583" />
1138 <bpmndi:BPMNLabel>
1139 <dc:Bounds x="187" y="558" width="0" height="0" />
1140 </bpmndi:BPMNLabel>
1141 </bpmndi:BPMNEdge>
1142 <bpmndi:BPMNShape id="CallActivity_07nu6s6_di" bpmnElement="Task_1l0uvof">
1143 <dc:Bounds x="687" y="348" width="100" height="80" />
1144 </bpmndi:BPMNShape>
1145 <bpmndi:BPMNEdge id="SequenceFlow_1jbuf1t_di" bpmnElement="SequenceFlow_1jbuf1t">
1146 <di:waypoint xsi:type="dc:Point" x="787" y="388" />
1147 <di:waypoint xsi:type="dc:Point" x="1056" y="388" />
1148 <bpmndi:BPMNLabel>
1149 <dc:Bounds x="922" y="373" width="0" height="0" />
1150 </bpmndi:BPMNLabel>
1151 </bpmndi:BPMNEdge>
1152 <bpmndi:BPMNEdge id="SequenceFlow_17g05fd_di" bpmnElement="SequenceFlow_17g05fd">
1153 <di:waypoint xsi:type="dc:Point" x="567" y="388" />
1154 <di:waypoint xsi:type="dc:Point" x="687" y="388" />
1155 <bpmndi:BPMNLabel>
1156 <dc:Bounds x="627" y="373" width="0" height="0" />
1157 </bpmndi:BPMNLabel>
1158 </bpmndi:BPMNEdge>
1159 <bpmndi:BPMNShape id="ExclusiveGateway_0y7gtd9_di" bpmnElement="ExclusiveGateway_0y7gtd9" isMarkerVisible="true">
1160 <dc:Bounds x="55" y="2696" width="50" height="50" />
1161 <bpmndi:BPMNLabel>
1162 <dc:Bounds x="-36" y="2709" width="76" height="12" />
1163 </bpmndi:BPMNLabel>
1164 </bpmndi:BPMNShape>
1165 <bpmndi:BPMNEdge id="SequenceFlow_0ftzjjm_di" bpmnElement="SequenceFlow_0ftzjjm">
1166 <di:waypoint xsi:type="dc:Point" x="80" y="2787" />
1167 <di:waypoint xsi:type="dc:Point" x="80" y="2746" />
1168 <bpmndi:BPMNLabel>
1169 <dc:Bounds x="50" y="2767" width="90" height="0" />
1170 </bpmndi:BPMNLabel>
1171 </bpmndi:BPMNEdge>
1172 <bpmndi:BPMNEdge id="SequenceFlow_12dakwh_di" bpmnElement="SequenceFlow_12dakwh">
1173 <di:waypoint xsi:type="dc:Point" x="80" y="2696" />
1174 <di:waypoint xsi:type="dc:Point" x="80" y="2654" />
1175 <bpmndi:BPMNLabel>
1176 <dc:Bounds x="87" y="2667" width="16" height="12" />
1177 </bpmndi:BPMNLabel>
1178 </bpmndi:BPMNEdge>
1179 <bpmndi:BPMNShape id="InclusiveGateway_1xenadu_di" bpmnElement="InclusiveGateway_1xenadu">
1180 <dc:Bounds x="714" y="2696" width="50" height="50" />
1181 <bpmndi:BPMNLabel>
1182 <dc:Bounds x="694" y="2751" width="90" height="0" />
1183 </bpmndi:BPMNLabel>
1184 </bpmndi:BPMNShape>
1185 <bpmndi:BPMNEdge id="SequenceFlow_1lv5ld6_di" bpmnElement="SequenceFlow_1lv5ld6">
1186 <di:waypoint xsi:type="dc:Point" x="1031" y="2154" />
1187 <di:waypoint xsi:type="dc:Point" x="1031" y="2721" />
1188 <di:waypoint xsi:type="dc:Point" x="764" y="2721" />
1189 <bpmndi:BPMNLabel>
1190 <dc:Bounds x="1001" y="2438" width="90" height="0" />
1191 </bpmndi:BPMNLabel>
1192 </bpmndi:BPMNEdge>
1193 <bpmndi:BPMNEdge id="SequenceFlow_0dvsqpp_di" bpmnElement="SequenceFlow_0dvsqpp">
1194 <di:waypoint xsi:type="dc:Point" x="739" y="2746" />
1195 <di:waypoint xsi:type="dc:Point" x="739" y="2787" />
1196 <bpmndi:BPMNLabel>
1197 <dc:Bounds x="709" y="2767" width="90" height="0" />
1198 </bpmndi:BPMNLabel>
1199 </bpmndi:BPMNEdge>
1200 <bpmndi:BPMNEdge id="SequenceFlow_09nn9a9_di" bpmnElement="SequenceFlow_09nn9a9">
1201 <di:waypoint xsi:type="dc:Point" x="105" y="2721" />
1202 <di:waypoint xsi:type="dc:Point" x="428" y="2721" />
1203 <di:waypoint xsi:type="dc:Point" x="428" y="2721" />
1204 <di:waypoint xsi:type="dc:Point" x="714" y="2721" />
1205 <bpmndi:BPMNLabel>
1206 <dc:Bounds x="148" y="2694" width="21" height="12" />
1207 </bpmndi:BPMNLabel>
1208 </bpmndi:BPMNEdge>
1209 <bpmndi:BPMNEdge id="SequenceFlow_027lz43_di" bpmnElement="SequenceFlow_027lz43">
1210 <di:waypoint xsi:type="dc:Point" x="80" y="2432" />
1211 <di:waypoint xsi:type="dc:Point" x="80" y="2333" />
1212 <bpmndi:BPMNLabel>
1213 <dc:Bounds x="50" y="2373" width="90" height="0" />
1214 </bpmndi:BPMNLabel>
1215 </bpmndi:BPMNEdge>
1216 <bpmndi:BPMNEdge id="SequenceFlow_0t3mtod_di" bpmnElement="SequenceFlow_0t3mtod">
1217 <di:waypoint xsi:type="dc:Point" x="80" y="2104" />
1218 <di:waypoint xsi:type="dc:Point" x="80" y="1847" />
1219 <di:waypoint xsi:type="dc:Point" x="182" y="1847" />
1220 <bpmndi:BPMNLabel>
1221 <dc:Bounds x="50" y="1966" width="90" height="0" />
1222 </bpmndi:BPMNLabel>
1223 </bpmndi:BPMNEdge>
1224 <bpmndi:BPMNShape id="IntermediateCatchEvent_17pzn7m_di" bpmnElement="IntermediateCatchEvent_17pzn7m">
1225 <dc:Bounds x="83" y="1259" width="36" height="36" />
1226 <bpmndi:BPMNLabel>
1227 <dc:Bounds x="57" y="1295" width="80" height="24" />
1228 </bpmndi:BPMNLabel>
1229 </bpmndi:BPMNShape>
1230 <bpmndi:BPMNShape id="IntermediateThrowEvent_0lt5ltv_di" bpmnElement="IntermediateThrowEvent_0lt5ltv">
1231 <dc:Bounds x="670" y="1274" width="36" height="36" />
1232 <bpmndi:BPMNLabel>
1233 <dc:Bounds x="644" y="1321" width="87" height="24" />
1234 </bpmndi:BPMNLabel>
1235 </bpmndi:BPMNShape>
1236 <bpmndi:BPMNShape id="ExclusiveGateway_1xwfgxs_di" bpmnElement="ExclusiveGateway_1xwfgxs" isMarkerVisible="true">
1237 <dc:Bounds x="312" y="1252" width="50" height="50" />
1238 <bpmndi:BPMNLabel>
1239 <dc:Bounds x="369" y="1271" width="70" height="36" />
1240 </bpmndi:BPMNLabel>
1241 </bpmndi:BPMNShape>
1242 <bpmndi:BPMNShape id="ExclusiveGateway_0jqgskx_di" bpmnElement="ExclusiveGateway_0jqgskx" isMarkerVisible="true">
1243 <dc:Bounds x="535" y="1267" width="50" height="50" />
1244 <bpmndi:BPMNLabel>
1245 <dc:Bounds x="515" y="1317" width="0" height="12" />
1246 </bpmndi:BPMNLabel>
1247 </bpmndi:BPMNShape>
1248 <bpmndi:BPMNShape id="CallActivity_0xt1l8t_di" bpmnElement="CallActivity_0xt1l8t">
1249 <dc:Bounds x="400" y="1151" width="100" height="80" />
1250 </bpmndi:BPMNShape>
1251 <bpmndi:BPMNEdge id="SequenceFlow_0hwsm6n_di" bpmnElement="SequenceFlow_0hwsm6n">
1252 <di:waypoint xsi:type="dc:Point" x="585" y="1292" />
1253 <di:waypoint xsi:type="dc:Point" x="628" y="1292" />
1254 <di:waypoint xsi:type="dc:Point" x="628" y="1292" />
1255 <di:waypoint xsi:type="dc:Point" x="670" y="1292" />
1256 <bpmndi:BPMNLabel>
1257 <dc:Bounds x="598" y="1292" width="0" height="12" />
1258 </bpmndi:BPMNLabel>
1259 </bpmndi:BPMNEdge>
1260 <bpmndi:BPMNEdge id="SequenceFlow_0loks1u_di" bpmnElement="SequenceFlow_0loks1u">
1261 <di:waypoint xsi:type="dc:Point" x="337" y="1302" />
1262 <di:waypoint xsi:type="dc:Point" x="337" y="1352" />
1263 <di:waypoint xsi:type="dc:Point" x="560" y="1352" />
1264 <di:waypoint xsi:type="dc:Point" x="560" y="1317" />
1265 <bpmndi:BPMNLabel>
1266 <dc:Bounds x="441" y="1337" width="16" height="12" />
1267 </bpmndi:BPMNLabel>
1268 </bpmndi:BPMNEdge>
1269 <bpmndi:BPMNEdge id="SequenceFlow_0b5ztoe_di" bpmnElement="SequenceFlow_0b5ztoe">
1270 <di:waypoint xsi:type="dc:Point" x="337" y="1252" />
1271 <di:waypoint xsi:type="dc:Point" x="337" y="1191" />
1272 <di:waypoint xsi:type="dc:Point" x="395" y="1191" />
1273 <bpmndi:BPMNLabel>
1274 <dc:Bounds x="353" y="1216.4242424242425" width="21" height="12" />
1275 </bpmndi:BPMNLabel>
1276 </bpmndi:BPMNEdge>
1277 <bpmndi:BPMNEdge id="SequenceFlow_0e9e6fo_di" bpmnElement="SequenceFlow_0e9e6fo">
1278 <di:waypoint xsi:type="dc:Point" x="500" y="1191" />
1279 <di:waypoint xsi:type="dc:Point" x="560" y="1191" />
1280 <di:waypoint xsi:type="dc:Point" x="560" y="1267" />
1281 <bpmndi:BPMNLabel>
1282 <dc:Bounds x="485" y="1166" width="0" height="12" />
1283 </bpmndi:BPMNLabel>
1284 </bpmndi:BPMNEdge>
1285 <bpmndi:BPMNShape id="ScriptTask_05epj75_di" bpmnElement="ScriptTask_05epj75">
1286 <dc:Bounds x="184" y="1237" width="100" height="80" />
1287 </bpmndi:BPMNShape>
1288 <bpmndi:BPMNEdge id="SequenceFlow_15vce9o_di" bpmnElement="SequenceFlow_15vce9o">
1289 <di:waypoint xsi:type="dc:Point" x="119" y="1277" />
1290 <di:waypoint xsi:type="dc:Point" x="184" y="1277" />
1291 <bpmndi:BPMNLabel>
1292 <dc:Bounds x="151.5" y="1256" width="0" height="12" />
1293 </bpmndi:BPMNLabel>
1294 </bpmndi:BPMNEdge>
1295 <bpmndi:BPMNEdge id="SequenceFlow_0yecpl2_di" bpmnElement="SequenceFlow_0yecpl2">
1296 <di:waypoint xsi:type="dc:Point" x="284" y="1277" />
1297 <di:waypoint xsi:type="dc:Point" x="312" y="1277" />
1298 <bpmndi:BPMNLabel>
1299 <dc:Bounds x="298" y="1256" width="0" height="12" />
1300 </bpmndi:BPMNLabel>
1301 </bpmndi:BPMNEdge>
1302 <bpmndi:BPMNShape id="IntermediateThrowEvent_09vobbc_di" bpmnElement="IntermediateThrowEvent_09vobbc">
1303 <dc:Bounds x="670" y="803" width="36" height="36" />
1304 <bpmndi:BPMNLabel>
1305 <dc:Bounds x="651" y="844" width="85" height="36" />
1306 </bpmndi:BPMNLabel>
1307 </bpmndi:BPMNShape>
1308 <bpmndi:BPMNEdge id="SequenceFlow_0o6tf9p_di" bpmnElement="SequenceFlow_0o6tf9p">
1309 <di:waypoint xsi:type="dc:Point" x="562" y="821" />
1310 <di:waypoint xsi:type="dc:Point" x="670" y="821" />
1311 <bpmndi:BPMNLabel>
1312 <dc:Bounds x="616" y="800" width="0" height="12" />
1313 </bpmndi:BPMNLabel>
1314 </bpmndi:BPMNEdge>
1315 <bpmndi:BPMNShape id="CallActivity_1els13v_di" bpmnElement="CallActivity_1els13v">
1316 <dc:Bounds x="617" y="942" width="100" height="80" />
1317 </bpmndi:BPMNShape>
1318 <bpmndi:BPMNShape id="ScriptTask_0n1k77c_di" bpmnElement="ScriptTask_0n1k77c">
1319 <dc:Bounds x="450" y="942" width="100" height="80" />
1320 </bpmndi:BPMNShape>
1321 <bpmndi:BPMNShape id="IntermediateThrowEvent_1xsowxp_di" bpmnElement="IntermediateThrowEvent_1xsowxp">
1322 <dc:Bounds x="1027" y="1031" width="36" height="36" />
1323 <bpmndi:BPMNLabel>
1324 <dc:Bounds x="1001" y="1072" width="87" height="24" />
1325 </bpmndi:BPMNLabel>
1326 </bpmndi:BPMNShape>
1327 <bpmndi:BPMNShape id="IntermediateCatchEvent_19a50jz_di" bpmnElement="IntermediateCatchEvent_19a50jz">
1328 <dc:Bounds x="77" y="1047" width="36" height="36" />
1329 <bpmndi:BPMNLabel>
1330 <dc:Bounds x="70" y="1083" width="48" height="12" />
1331 </bpmndi:BPMNLabel>
1332 </bpmndi:BPMNShape>
1333 <bpmndi:BPMNShape id="ExclusiveGateway_0yae9sb_di" bpmnElement="ExclusiveGateway_0yae9sb" isMarkerVisible="true">
1334 <dc:Bounds x="326" y="1040" width="50" height="50" />
1335 <bpmndi:BPMNLabel>
1336 <dc:Bounds x="388" y="1059" width="67" height="12" />
1337 </bpmndi:BPMNLabel>
1338 </bpmndi:BPMNShape>
1339 <bpmndi:BPMNShape id="ExclusiveGateway_1hlbkue_di" bpmnElement="ExclusiveGateway_1hlbkue" isMarkerVisible="true">
1340 <dc:Bounds x="892" y="1024" width="50" height="50" />
1341 <bpmndi:BPMNLabel>
1342 <dc:Bounds x="872" y="1079" width="0" height="12" />
1343 </bpmndi:BPMNLabel>
1344 </bpmndi:BPMNShape>
1345 <bpmndi:BPMNEdge id="SequenceFlow_0ws7fjn_di" bpmnElement="SequenceFlow_0ws7fjn">
1346 <di:waypoint xsi:type="dc:Point" x="550" y="983" />
1347 <di:waypoint xsi:type="dc:Point" x="580" y="983" />
1348 <di:waypoint xsi:type="dc:Point" x="580" y="981" />
1349 <di:waypoint xsi:type="dc:Point" x="617" y="981" />
1350 <bpmndi:BPMNLabel>
1351 <dc:Bounds x="550" y="982" width="0" height="12" />
1352 </bpmndi:BPMNLabel>
1353 </bpmndi:BPMNEdge>
1354 <bpmndi:BPMNEdge id="SequenceFlow_1mkdhw9_di" bpmnElement="SequenceFlow_1mkdhw9">
1355 <di:waypoint xsi:type="dc:Point" x="717" y="982" />
1356 <di:waypoint xsi:type="dc:Point" x="917" y="982" />
1357 <di:waypoint xsi:type="dc:Point" x="917" y="1024" />
1358 <bpmndi:BPMNLabel>
1359 <dc:Bounds x="803" y="929" width="87" height="48" />
1360 </bpmndi:BPMNLabel>
1361 </bpmndi:BPMNEdge>
1362 <bpmndi:BPMNEdge id="SequenceFlow_0p75l97_di" bpmnElement="SequenceFlow_0p75l97">
1363 <di:waypoint xsi:type="dc:Point" x="351" y="1040" />
1364 <di:waypoint xsi:type="dc:Point" x="351" y="982" />
1365 <di:waypoint xsi:type="dc:Point" x="450" y="982" />
1366 <bpmndi:BPMNLabel>
1367 <dc:Bounds x="361" y="1015" width="21" height="12" />
1368 </bpmndi:BPMNLabel>
1369 </bpmndi:BPMNEdge>
1370 <bpmndi:BPMNEdge id="SequenceFlow_1ufio7c_di" bpmnElement="SequenceFlow_1ufio7c">
1371 <di:waypoint xsi:type="dc:Point" x="942" y="1049" />
1372 <di:waypoint xsi:type="dc:Point" x="1027" y="1049" />
1373 <bpmndi:BPMNLabel>
1374 <dc:Bounds x="940.5" y="1024" width="0" height="12" />
1375 </bpmndi:BPMNLabel>
1376 </bpmndi:BPMNEdge>
1377 <bpmndi:BPMNEdge id="SequenceFlow_0aza7xq_di" bpmnElement="SequenceFlow_0aza7xq">
1378 <di:waypoint xsi:type="dc:Point" x="113" y="1065" />
1379 <di:waypoint xsi:type="dc:Point" x="326" y="1065" />
1380 <bpmndi:BPMNLabel>
1381 <dc:Bounds x="175.5" y="1040" width="0" height="12" />
1382 </bpmndi:BPMNLabel>
1383 </bpmndi:BPMNEdge>
1384 <bpmndi:BPMNEdge id="SequenceFlow_13iuk3s_di" bpmnElement="SequenceFlow_13iuk3s">
1385 <di:waypoint xsi:type="dc:Point" x="351" y="1091" />
1386 <di:waypoint xsi:type="dc:Point" x="351" y="1114" />
1387 <di:waypoint xsi:type="dc:Point" x="917" y="1114" />
1388 <di:waypoint xsi:type="dc:Point" x="917" y="1075" />
1389 <bpmndi:BPMNLabel>
1390 <dc:Bounds x="596" y="1090" width="16" height="12" />
1391 </bpmndi:BPMNLabel>
1392 </bpmndi:BPMNEdge>
1393 <bpmndi:BPMNShape id="CallActivity_071yaf8_di" bpmnElement="CallActivity_071yaf8">
1394 <dc:Bounds x="326" y="1807" width="100" height="80" />
1395 </bpmndi:BPMNShape>
1396 <bpmndi:BPMNEdge id="SequenceFlow_1sl79hn_di" bpmnElement="SequenceFlow_1sl79hn">
1397 <di:waypoint xsi:type="dc:Point" x="232" y="1847" />
1398 <di:waypoint xsi:type="dc:Point" x="261" y="1847" />
1399 <di:waypoint xsi:type="dc:Point" x="261" y="1847" />
1400 <di:waypoint xsi:type="dc:Point" x="326" y="1847" />
1401 <bpmndi:BPMNLabel>
1402 <dc:Bounds x="275.2413793103448" y="1827" width="21" height="12" />
1403 </bpmndi:BPMNLabel>
1404 </bpmndi:BPMNEdge>
1405 <bpmndi:BPMNShape id="ExclusiveGateway_0y158bb_di" bpmnElement="ExclusiveGateway_0y158bb" isMarkerVisible="true">
1406 <dc:Bounds x="526" y="1822" width="50" height="50" />
1407 <bpmndi:BPMNLabel>
1408 <dc:Bounds x="527" y="1783" width="48" height="24" />
1409 </bpmndi:BPMNLabel>
1410 </bpmndi:BPMNShape>
1411 <bpmndi:BPMNEdge id="SequenceFlow_0ne9n0g_di" bpmnElement="SequenceFlow_0ne9n0g">
1412 <di:waypoint xsi:type="dc:Point" x="426" y="1847" />
1413 <di:waypoint xsi:type="dc:Point" x="526" y="1847" />
1414 <bpmndi:BPMNLabel>
1415 <dc:Bounds x="476" y="1826" width="0" height="12" />
1416 </bpmndi:BPMNLabel>
1417 </bpmndi:BPMNEdge>
1418 <bpmndi:BPMNEdge id="SequenceFlow_1a7e8l1_di" bpmnElement="SequenceFlow_1a7e8l1">
1419 <di:waypoint xsi:type="dc:Point" x="711" y="1967" />
1420 <di:waypoint xsi:type="dc:Point" x="981" y="1967" />
1421 <bpmndi:BPMNLabel>
1422 <dc:Bounds x="836" y="1946" width="21" height="12" />
1423 </bpmndi:BPMNLabel>
1424 </bpmndi:BPMNEdge>
1425 <bpmndi:BPMNEdge id="SequenceFlow_00by7l7_di" bpmnElement="SequenceFlow_00by7l7">
1426 <di:waypoint xsi:type="dc:Point" x="551" y="1872" />
1427 <di:waypoint xsi:type="dc:Point" x="551" y="2129" />
1428 <di:waypoint xsi:type="dc:Point" x="1006" y="2129" />
1429 <bpmndi:BPMNLabel>
1430 <dc:Bounds x="558" y="1995" width="16" height="12" />
1431 </bpmndi:BPMNLabel>
1432 </bpmndi:BPMNEdge>
1433 <bpmndi:BPMNEdge id="SequenceFlow_17cz98f_di" bpmnElement="SequenceFlow_17cz98f">
1434 <di:waypoint xsi:type="dc:Point" x="551" y="1872" />
1435 <di:waypoint xsi:type="dc:Point" x="551" y="1967" />
1436 <di:waypoint xsi:type="dc:Point" x="661" y="1967" />
1437 <bpmndi:BPMNLabel>
1438 <dc:Bounds x="556" y="1914" width="21" height="12" />
1439 </bpmndi:BPMNLabel>
1440 </bpmndi:BPMNEdge>
1441 <bpmndi:BPMNShape id="CallActivity_1cl4iu4_di" bpmnElement="CallActivity_1cl4iu4">
1442 <dc:Bounds x="157" y="2194" width="100" height="80" />
1443 </bpmndi:BPMNShape>
1444 <bpmndi:BPMNEdge id="SequenceFlow_1mpsdaj_di" bpmnElement="SequenceFlow_1mpsdaj">
1445 <di:waypoint xsi:type="dc:Point" x="207" y="2194" />
1446 <di:waypoint xsi:type="dc:Point" x="207" y="2154" />
1447 <bpmndi:BPMNLabel>
1448 <dc:Bounds x="222" y="2168" width="0" height="12" />
1449 </bpmndi:BPMNLabel>
1450 </bpmndi:BPMNEdge>
1451 <bpmndi:BPMNEdge id="SequenceFlow_007p8k3_di" bpmnElement="SequenceFlow_007p8k3">
1452 <di:waypoint xsi:type="dc:Point" x="105" y="2308" />
1453 <di:waypoint xsi:type="dc:Point" x="207" y="2308" />
1454 <di:waypoint xsi:type="dc:Point" x="207" y="2274" />
1455 <bpmndi:BPMNLabel>
1456 <dc:Bounds x="146" y="2287" width="21" height="12" />
1457 </bpmndi:BPMNLabel>
1458 </bpmndi:BPMNEdge>
1459 <bpmndi:BPMNShape id="CallActivity_1ymzucb_di" bpmnElement="CallActivity_1ymzucb">
1460 <dc:Bounds x="400" y="690" width="100" height="80" />
1461 </bpmndi:BPMNShape>
1462 <bpmndi:BPMNEdge id="SequenceFlow_1cgpklo_di" bpmnElement="SequenceFlow_1cgpklo">
1463 <di:waypoint xsi:type="dc:Point" x="500" y="730" />
1464 <di:waypoint xsi:type="dc:Point" x="538" y="730" />
1465 <di:waypoint xsi:type="dc:Point" x="538" y="797" />
1466 <bpmndi:BPMNLabel>
1467 <dc:Bounds x="474" y="715" width="90" height="0" />
1468 </bpmndi:BPMNLabel>
1469 </bpmndi:BPMNEdge>
1470 </bpmndi:BPMNPlane>
1471 </bpmndi:BPMNDiagram>
1472</bpmn2:definitions>