blob: 99b1ff51e905463911495e1900b191486a2b9d8b [file] [log] [blame]
biniek12e339c2018-04-16 16:14:32 +02001<?xml version="1.0" encoding="UTF-8"?>
Arthur Martella587abe32018-05-16 16:36:50 -04002<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.10.0" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL BPMN20.xsd">
Yulian Han1f5b2892018-04-19 10:45:19 +08003 <bpmn2:process id="CreateVcpeResCustServiceV2" name="CreateVcpeResCustServiceV2" isExecutable="true">
biniek12e339c2018-04-16 16:14:32 +02004 <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 <camunda:in source="bpmnRequest" target="requestJson" />
105 </bpmn2:extensionElements>
106 <bpmn2:incoming>SequenceFlow_0j6sjye</bpmn2:incoming>
107 <bpmn2:outgoing>SequenceFlow_1ky2sv9</bpmn2:outgoing>
108 </bpmn2:callActivity>
109 <bpmn2:intermediateThrowEvent id="IntermediateThrowEvent_2" name="GoTovCPE-RESCUST">
110 <bpmn2:incoming>SequenceFlow_3</bpmn2:incoming>
111 <bpmn2:linkEventDefinition id="_LinkEventDefinition_38" name="vCPE-RESCUST" />
112 </bpmn2:intermediateThrowEvent>
113 <bpmn2:subProcess id="SubProcess_0s6hpty" name="Subprocess For Exception / FalloutHandler" triggeredByEvent="true">
114 <bpmn2:exclusiveGateway id="ExclusiveGateway_1vwgs6p" name="Is Rollback On?" default="SequenceFlow_0dhf2js">
115 <bpmn2:incoming>SequenceFlow_0zq7i3q</bpmn2:incoming>
116 <bpmn2:outgoing>SequenceFlow_0zpbskl</bpmn2:outgoing>
117 <bpmn2:outgoing>SequenceFlow_0dhf2js</bpmn2:outgoing>
118 </bpmn2:exclusiveGateway>
119 <bpmn2:startEvent id="StartEvent_1bwmffk" name="Fault Start">
120 <bpmn2:outgoing>SequenceFlow_0zq7i3q</bpmn2:outgoing>
121 <bpmn2:errorEventDefinition />
122 </bpmn2:startEvent>
123 <bpmn2:exclusiveGateway id="ExclusiveGateway_0ydrtdx" name="isPONR?" default="SequenceFlow_02o4yqx">
124 <bpmn2:incoming>SequenceFlow_0zpbskl</bpmn2:incoming>
125 <bpmn2:outgoing>SequenceFlow_1sx5llu</bpmn2:outgoing>
126 <bpmn2:outgoing>SequenceFlow_02o4yqx</bpmn2:outgoing>
127 </bpmn2:exclusiveGateway>
128 <bpmn2:exclusiveGateway id="ExclusiveGateway_1kvn1pz" name="is AR_TXC Ok?" default="SequenceFlow_19mxskt">
129 <bpmn2:incoming>SequenceFlow_0t3mtod</bpmn2:incoming>
130 <bpmn2:outgoing>SequenceFlow_19mxskt</bpmn2:outgoing>
131 <bpmn2:outgoing>SequenceFlow_1sl79hn</bpmn2:outgoing>
132 </bpmn2:exclusiveGateway>
133 <bpmn2:callActivity id="CallActivity_0jw5tqa" name="Call FalloutHandlerV1" calledElement="FalloutHandler">
134 <bpmn2:extensionElements>
135 <camunda:in source="CVRCS_falloutRequest" target="FalloutHandlerRequest" />
136 <camunda:in source="msoRequestId" target="mso-request-id" />
137 <camunda:in source="serviceInstanceId" target="mso-service-instance-id" />
138 <camunda:out source="FH_ResponseCode" target="FH_ResponseCode" />
139 <camunda:out source="FalloutHandlerResponse" target="FalloutHandlerResponse" />
140 <camunda:out source="FH_ErrorResponse" target="FH_ErrorResponse" />
141 </bpmn2:extensionElements>
142 <bpmn2:incoming>SequenceFlow_0807ukc</bpmn2:incoming>
143 <bpmn2:outgoing>SequenceFlow_19yywk8</bpmn2:outgoing>
144 </bpmn2:callActivity>
145 <bpmn2:endEvent id="EndEvent_04xute7">
146 <bpmn2:incoming>SequenceFlow_19yywk8</bpmn2:incoming>
147 </bpmn2:endEvent>
148 <bpmn2:scriptTask id="ScriptTask_0yk02h3" name="Prepare FalloutHandler" scriptFormat="groovy">
149 <bpmn2:incoming>SequenceFlow_0jg47xm</bpmn2:incoming>
150 <bpmn2:outgoing>SequenceFlow_0807ukc</bpmn2:outgoing>
151 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.vcpe.scripts.*
152def CreateVcpeResCustService = new CreateVcpeResCustService()
153CreateVcpeResCustService.prepareFalloutRequest(execution)]]></bpmn2:script>
154 </bpmn2:scriptTask>
155 <bpmn2:sequenceFlow id="SequenceFlow_0zpbskl" name="Yes" sourceRef="ExclusiveGateway_1vwgs6p" targetRef="ExclusiveGateway_0ydrtdx">
156 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("disableRollback") != true}]]></bpmn2:conditionExpression>
157 </bpmn2:sequenceFlow>
158 <bpmn2:sequenceFlow id="SequenceFlow_0dhf2js" name="No" sourceRef="ExclusiveGateway_1vwgs6p" targetRef="InclusiveGateway_0foywso" />
159 <bpmn2:sequenceFlow id="SequenceFlow_1sx5llu" name="Yes" sourceRef="ExclusiveGateway_0ydrtdx" targetRef="InclusiveGateway_0foywso">
160 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("PONR") == true}]]></bpmn2:conditionExpression>
161 </bpmn2:sequenceFlow>
162 <bpmn2:sequenceFlow id="SequenceFlow_02o4yqx" name="No" sourceRef="ExclusiveGateway_0ydrtdx" targetRef="ScriptTask_17doerz" />
163 <bpmn2:sequenceFlow id="SequenceFlow_19mxskt" name="No" sourceRef="ExclusiveGateway_1kvn1pz" targetRef="ExclusiveGateway_05indeh" />
164 <bpmn2:callActivity id="DoRollbackService_CallActivity" name="DoRollback&#10;Service&#10;" calledElement="DoCreateServiceInstanceRollback">
165 <bpmn2:extensionElements>
166 <camunda:in source="DCRESI_rollbackData" target="rollbackData" />
167 <camunda:in source="msoRequestId" target="msoRequestId" />
168 <camunda:out source="rolledBack" target="DCRESI_rolledBack" />
169 <camunda:out source="rollbackError" target="DCRESI_rollbackError" />
170 <camunda:in source="sdncVersion" target="sdncVersion" />
171 </bpmn2:extensionElements>
172 <bpmn2:incoming>SequenceFlow_1a7e8l1</bpmn2:incoming>
173 <bpmn2:outgoing>SequenceFlow_1f1hd3l</bpmn2:outgoing>
174 </bpmn2:callActivity>
175 <bpmn2:inclusiveGateway id="InclusiveGateway_0foywso">
176 <bpmn2:incoming>SequenceFlow_1sx5llu</bpmn2:incoming>
177 <bpmn2:incoming>SequenceFlow_0dhf2js</bpmn2:incoming>
178 <bpmn2:incoming>SequenceFlow_1rabks0</bpmn2:incoming>
179 <bpmn2:outgoing>SequenceFlow_0jg47xm</bpmn2:outgoing>
180 </bpmn2:inclusiveGateway>
181 <bpmn2:sequenceFlow id="SequenceFlow_1f1hd3l" sourceRef="DoRollbackService_CallActivity" targetRef="InclusiveGateway_0m9f5ka" />
182 <bpmn2:sequenceFlow id="SequenceFlow_0jg47xm" sourceRef="InclusiveGateway_0foywso" targetRef="ScriptTask_0yk02h3" />
183 <bpmn2:sequenceFlow id="SequenceFlow_0807ukc" sourceRef="ScriptTask_0yk02h3" targetRef="CallActivity_0jw5tqa" />
184 <bpmn2:sequenceFlow id="SequenceFlow_19yywk8" sourceRef="CallActivity_0jw5tqa" targetRef="EndEvent_04xute7" />
185 <bpmn2:exclusiveGateway id="ExclusiveGateway_05indeh" name="Service Rollback present?" default="SequenceFlow_0sezboq">
186 <bpmn2:incoming>SequenceFlow_19mxskt</bpmn2:incoming>
187 <bpmn2:incoming>SequenceFlow_17cz98f</bpmn2:incoming>
188 <bpmn2:outgoing>SequenceFlow_0sezboq</bpmn2:outgoing>
189 <bpmn2:outgoing>SequenceFlow_1a7e8l1</bpmn2:outgoing>
190 </bpmn2:exclusiveGateway>
191 <bpmn2:sequenceFlow id="SequenceFlow_0sezboq" name="No" sourceRef="ExclusiveGateway_05indeh" targetRef="InclusiveGateway_0m9f5ka" />
192 <bpmn2:sequenceFlow id="SequenceFlow_0zq7i3q" name="" sourceRef="StartEvent_1bwmffk" targetRef="ExclusiveGateway_1vwgs6p" />
193 <bpmn2:inclusiveGateway id="InclusiveGateway_0m9f5ka">
194 <bpmn2:incoming>SequenceFlow_1f1hd3l</bpmn2:incoming>
195 <bpmn2:incoming>SequenceFlow_0sezboq</bpmn2:incoming>
196 <bpmn2:incoming>SequenceFlow_1mbymcu</bpmn2:incoming>
197 <bpmn2:incoming>SequenceFlow_00by7l7</bpmn2:incoming>
198 <bpmn2:outgoing>SequenceFlow_1lv5ld6</bpmn2:outgoing>
199 </bpmn2:inclusiveGateway>
200 <bpmn2:scriptTask id="ScriptTask_17doerz" name="Pre Process Rollback" scriptFormat="groovy">
201 <bpmn2:incoming>SequenceFlow_02o4yqx</bpmn2:incoming>
202 <bpmn2:outgoing>SequenceFlow_0ftzjjm</bpmn2:outgoing>
203 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.vcpe.scripts.*
204def CreateVcpeResCustService= new CreateVcpeResCustService()
205CreateVcpeResCustService.preProcessRollback(execution)]]></bpmn2:script>
206 </bpmn2:scriptTask>
207 <bpmn2:scriptTask id="ScriptTask_0wyub4x" name="Post Process Rollback" scriptFormat="groovy">
208 <bpmn2:incoming>SequenceFlow_0dvsqpp</bpmn2:incoming>
209 <bpmn2:outgoing>SequenceFlow_1rabks0</bpmn2:outgoing>
210 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.vcpe.scripts.*
211def CreateVcpeResCustService= new CreateVcpeResCustService()
212CreateVcpeResCustService.postProcessRollback(execution)]]></bpmn2:script>
213 </bpmn2:scriptTask>
214 <bpmn2:sequenceFlow id="SequenceFlow_1rabks0" sourceRef="ScriptTask_0wyub4x" targetRef="InclusiveGateway_0foywso" />
215 <bpmn2:exclusiveGateway id="ExclusiveGateway_06gq6em" name="is AR_BRG Ok?" default="SequenceFlow_0ya1cr3">
216 <bpmn2:incoming>SequenceFlow_12dakwh</bpmn2:incoming>
217 <bpmn2:outgoing>SequenceFlow_0orpdrl</bpmn2:outgoing>
218 <bpmn2:outgoing>SequenceFlow_0ya1cr3</bpmn2:outgoing>
219 </bpmn2:exclusiveGateway>
220 <bpmn2:callActivity id="CallActivity_1bpuf2p" name="DoRollback&#10;BRG Allotted Resources&#10;" calledElement="DoCreateAllottedResourceBRGRollback">
221 <bpmn2:extensionElements>
222 <camunda:in source="msoRequestId" target="msoRequestId" />
223 <camunda:in source="DCARBRG_rollbackData" target="rollbackData" />
224 <camunda:in source="sdncVersion" target="sdncVersion" />
225 <camunda:out source="rolledBack" target="DCARBRG_rolledBack" />
226 <camunda:out source="rollbackError" target="DCARBRG_rollbackError" />
227 </bpmn2:extensionElements>
228 <bpmn2:incoming>SequenceFlow_0orpdrl</bpmn2:incoming>
229 <bpmn2:outgoing>SequenceFlow_1t3cnnx</bpmn2:outgoing>
230 </bpmn2:callActivity>
231 <bpmn2:inclusiveGateway id="InclusiveGateway_131ozdf">
232 <bpmn2:incoming>SequenceFlow_0ya1cr3</bpmn2:incoming>
233 <bpmn2:incoming>SequenceFlow_1sim44y</bpmn2:incoming>
234 <bpmn2:outgoing>SequenceFlow_027lz43</bpmn2:outgoing>
235 </bpmn2:inclusiveGateway>
236 <bpmn2:sequenceFlow id="SequenceFlow_0orpdrl" name="Yes" sourceRef="ExclusiveGateway_06gq6em" targetRef="CallActivity_1bpuf2p">
237 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("DCARBRG_rollbackData") != null }]]></bpmn2:conditionExpression>
238 </bpmn2:sequenceFlow>
239 <bpmn2:sequenceFlow id="SequenceFlow_1t3cnnx" sourceRef="CallActivity_1bpuf2p" targetRef="ExclusiveGateway_1mjdcct" />
240 <bpmn2:sequenceFlow id="SequenceFlow_0ya1cr3" name="No" sourceRef="ExclusiveGateway_06gq6em" targetRef="InclusiveGateway_131ozdf" />
241 <bpmn2:exclusiveGateway id="ExclusiveGateway_14tl857" name="is VNF Ok?" default="SequenceFlow_1kpdu1j">
242 <bpmn2:incoming>SequenceFlow_027lz43</bpmn2:incoming>
243 <bpmn2:outgoing>SequenceFlow_1kpdu1j</bpmn2:outgoing>
244 <bpmn2:outgoing>SequenceFlow_007p8k3</bpmn2:outgoing>
245 </bpmn2:exclusiveGateway>
246 <bpmn2:inclusiveGateway id="InclusiveGateway_142br6v">
247 <bpmn2:incoming>SequenceFlow_1kpdu1j</bpmn2:incoming>
248 <bpmn2:incoming>SequenceFlow_1quvahv</bpmn2:incoming>
249 <bpmn2:outgoing>SequenceFlow_0t3mtod</bpmn2:outgoing>
250 </bpmn2:inclusiveGateway>
251 <bpmn2:sequenceFlow id="SequenceFlow_1kpdu1j" name="No" sourceRef="ExclusiveGateway_14tl857" targetRef="InclusiveGateway_142br6v" />
252 <bpmn2:exclusiveGateway id="ExclusiveGateway_1mjdcct" name="Rollback success?" default="SequenceFlow_0dr2fem">
253 <bpmn2:incoming>SequenceFlow_1t3cnnx</bpmn2:incoming>
254 <bpmn2:outgoing>SequenceFlow_1sim44y</bpmn2:outgoing>
255 <bpmn2:outgoing>SequenceFlow_0dr2fem</bpmn2:outgoing>
256 </bpmn2:exclusiveGateway>
257 <bpmn2:sequenceFlow id="SequenceFlow_1sim44y" name="Yes" sourceRef="ExclusiveGateway_1mjdcct" targetRef="InclusiveGateway_131ozdf">
258 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{ execution.getVariable("DCARBRG_rolledBack") == true }]]></bpmn2:conditionExpression>
259 </bpmn2:sequenceFlow>
260 <bpmn2:sequenceFlow id="SequenceFlow_0dr2fem" name="No" sourceRef="ExclusiveGateway_1mjdcct" targetRef="InclusiveGateway_1xenadu" />
261 <bpmn2:exclusiveGateway id="ExclusiveGateway_05dg1m1" name="Rollback success?" default="SequenceFlow_1mbymcu">
262 <bpmn2:incoming>SequenceFlow_1mpsdaj</bpmn2:incoming>
263 <bpmn2:outgoing>SequenceFlow_1quvahv</bpmn2:outgoing>
264 <bpmn2:outgoing>SequenceFlow_1mbymcu</bpmn2:outgoing>
265 </bpmn2:exclusiveGateway>
266 <bpmn2:sequenceFlow id="SequenceFlow_1quvahv" name="Yes" sourceRef="ExclusiveGateway_05dg1m1" targetRef="InclusiveGateway_142br6v">
267 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{ execution.getVariable("DCVAM_rolledBack") ==true }]]></bpmn2:conditionExpression>
268 </bpmn2:sequenceFlow>
269 <bpmn2:sequenceFlow id="SequenceFlow_1mbymcu" name="No" sourceRef="ExclusiveGateway_05dg1m1" targetRef="InclusiveGateway_0m9f5ka" />
270 <bpmn2:exclusiveGateway id="ExclusiveGateway_0y7gtd9" name="rollback failed?" default="SequenceFlow_12dakwh">
271 <bpmn2:incoming>SequenceFlow_0ftzjjm</bpmn2:incoming>
272 <bpmn2:outgoing>SequenceFlow_12dakwh</bpmn2:outgoing>
273 <bpmn2:outgoing>SequenceFlow_09nn9a9</bpmn2:outgoing>
274 </bpmn2:exclusiveGateway>
275 <bpmn2:sequenceFlow id="SequenceFlow_0ftzjjm" sourceRef="ScriptTask_17doerz" targetRef="ExclusiveGateway_0y7gtd9" />
276 <bpmn2:sequenceFlow id="SequenceFlow_12dakwh" name="No" sourceRef="ExclusiveGateway_0y7gtd9" targetRef="ExclusiveGateway_06gq6em" />
277 <bpmn2:inclusiveGateway id="InclusiveGateway_1xenadu">
278 <bpmn2:incoming>SequenceFlow_1lv5ld6</bpmn2:incoming>
279 <bpmn2:incoming>SequenceFlow_09nn9a9</bpmn2:incoming>
280 <bpmn2:incoming>SequenceFlow_0dr2fem</bpmn2:incoming>
281 <bpmn2:outgoing>SequenceFlow_0dvsqpp</bpmn2:outgoing>
282 </bpmn2:inclusiveGateway>
283 <bpmn2:sequenceFlow id="SequenceFlow_1lv5ld6" sourceRef="InclusiveGateway_0m9f5ka" targetRef="InclusiveGateway_1xenadu" />
284 <bpmn2:sequenceFlow id="SequenceFlow_0dvsqpp" sourceRef="InclusiveGateway_1xenadu" targetRef="ScriptTask_0wyub4x" />
285 <bpmn2:sequenceFlow id="SequenceFlow_09nn9a9" name="Yes" sourceRef="ExclusiveGateway_0y7gtd9" targetRef="InclusiveGateway_1xenadu">
286 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("rolledBack") != null && execution.getVariable("rolledBack") == false}]]></bpmn2:conditionExpression>
287 </bpmn2:sequenceFlow>
288 <bpmn2:sequenceFlow id="SequenceFlow_027lz43" sourceRef="InclusiveGateway_131ozdf" targetRef="ExclusiveGateway_14tl857" />
289 <bpmn2:sequenceFlow id="SequenceFlow_0t3mtod" sourceRef="InclusiveGateway_142br6v" targetRef="ExclusiveGateway_1kvn1pz" />
290 <bpmn2:callActivity id="CallActivity_071yaf8" name="DoRollback&#10;TXC Allotted Resources&#10;" calledElement="DoCreateAllottedResourceTXCRollback">
291 <bpmn2:extensionElements>
292 <camunda:in source="msoRequestId" target="msoRequestId" />
293 <camunda:in source="DCARTXC_rollbackData" target="rollbackData" />
294 <camunda:in source="sdncVersion" target="sdncVersion" />
295 <camunda:out source="rolledBack" target="DCARTXC_rolledBack" />
296 <camunda:out source="rollbackError" target="DCARTXC_rollbackError" />
297 </bpmn2:extensionElements>
298 <bpmn2:incoming>SequenceFlow_1sl79hn</bpmn2:incoming>
299 <bpmn2:outgoing>SequenceFlow_0ne9n0g</bpmn2:outgoing>
300 </bpmn2:callActivity>
301 <bpmn2:sequenceFlow id="SequenceFlow_1sl79hn" name="Yes" sourceRef="ExclusiveGateway_1kvn1pz" targetRef="CallActivity_071yaf8">
302 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("DCARTXC_rollbackData") != null }]]></bpmn2:conditionExpression>
303 </bpmn2:sequenceFlow>
304 <bpmn2:exclusiveGateway id="ExclusiveGateway_0y158bb" name="Rollback success?" default="SequenceFlow_00by7l7">
305 <bpmn2:incoming>SequenceFlow_0ne9n0g</bpmn2:incoming>
306 <bpmn2:outgoing>SequenceFlow_00by7l7</bpmn2:outgoing>
307 <bpmn2:outgoing>SequenceFlow_17cz98f</bpmn2:outgoing>
308 </bpmn2:exclusiveGateway>
309 <bpmn2:sequenceFlow id="SequenceFlow_0ne9n0g" sourceRef="CallActivity_071yaf8" targetRef="ExclusiveGateway_0y158bb" />
310 <bpmn2:sequenceFlow id="SequenceFlow_1a7e8l1" name="Yes" sourceRef="ExclusiveGateway_05indeh" targetRef="DoRollbackService_CallActivity">
311 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{ execution.getVariable("DCRESI_rollbackData") != null }]]></bpmn2:conditionExpression>
312 </bpmn2:sequenceFlow>
313 <bpmn2:sequenceFlow id="SequenceFlow_00by7l7" name="No" sourceRef="ExclusiveGateway_0y158bb" targetRef="InclusiveGateway_0m9f5ka" />
314 <bpmn2:sequenceFlow id="SequenceFlow_17cz98f" name="Yes" sourceRef="ExclusiveGateway_0y158bb" targetRef="ExclusiveGateway_05indeh">
315 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{ execution.getVariable("DCARTXC_rolledBack") == true }]]></bpmn2:conditionExpression>
316 </bpmn2:sequenceFlow>
317 <bpmn2:callActivity id="CallActivity_1cl4iu4" name="DoRollback&#10;VNF and Modules&#10;" calledElement="DoCreateVnfAndModulesRollback">
318 <bpmn2:extensionElements>
319 <camunda:in source="msoRequestId" target="msoRequestId" />
320 <camunda:in source="DCVAM_rollbackData" target="rollbackData" />
321 <camunda:out source="rolledBack" target="DCVAM_rolledBack" />
322 <camunda:out source="rollbackError" target="DCVAM_rollbackError" />
323 <camunda:in source="sdncVersion" target="sdncVersion" />
324 </bpmn2:extensionElements>
325 <bpmn2:incoming>SequenceFlow_007p8k3</bpmn2:incoming>
326 <bpmn2:outgoing>SequenceFlow_1mpsdaj</bpmn2:outgoing>
327 </bpmn2:callActivity>
328 <bpmn2:sequenceFlow id="SequenceFlow_1mpsdaj" sourceRef="CallActivity_1cl4iu4" targetRef="ExclusiveGateway_05dg1m1" />
329 <bpmn2:sequenceFlow id="SequenceFlow_007p8k3" name="Yes" sourceRef="ExclusiveGateway_14tl857" targetRef="CallActivity_1cl4iu4">
330 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("DCVAM_rollbackData") != null }]]></bpmn2:conditionExpression>
331 </bpmn2:sequenceFlow>
332 </bpmn2:subProcess>
333 <bpmn2:scriptTask id="prepareCreateService_scriptTask" name="Prepare&#10;Create&#10;Service&#10;" scriptFormat="groovy">
334 <bpmn2:incoming>SequenceFlow_15odbkz</bpmn2:incoming>
335 <bpmn2:outgoing>SequenceFlow_0j6sjye</bpmn2:outgoing>
336 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.vcpe.scripts.*
337def CreateVcpeResCustService = new CreateVcpeResCustService()
338CreateVcpeResCustService.prepareCreateServiceInstance(execution)]]></bpmn2:script>
339 </bpmn2:scriptTask>
340 <bpmn2:scriptTask id="setPONR_ScriptTask" name="set PONR">
341 <bpmn2:incoming>SequenceFlow_12ilko1</bpmn2:incoming>
342 <bpmn2:outgoing>SequenceFlow_0afe2pg</bpmn2:outgoing>
343 <bpmn2:script><![CDATA[#{execution.setVariable("PONR", true)}]]></bpmn2:script>
344 </bpmn2:scriptTask>
345 <bpmn2:sequenceFlow id="SequenceFlow_12ilko1" sourceRef="IntermediateCatchEvent_4" targetRef="setPONR_ScriptTask" />
346 <bpmn2:sequenceFlow id="SequenceFlow_0afe2pg" sourceRef="setPONR_ScriptTask" targetRef="postProcessAndCompletionRequest_ScriptTask" />
347 <bpmn2:intermediateThrowEvent id="IntermediateThrowEvent_0prlju0" name="GoTo StartService">
348 <bpmn2:incoming>SequenceFlow_1jbuf1t</bpmn2:incoming>
349 <bpmn2:linkEventDefinition name="StartService" />
350 </bpmn2:intermediateThrowEvent>
351 <bpmn2:sequenceFlow id="SequenceFlow_0j6sjye" sourceRef="prepareCreateService_scriptTask" targetRef="doCreateServiceInstance_CallActivity" />
352 <bpmn2:serviceTask id="updateInfraRequest" name="Update DB status to SUCCESS">
353 <bpmn2:extensionElements>
354 <camunda:connector>
355 <camunda:inputOutput>
356 <camunda:inputParameter name="url">${URN_mso_adapters_db_endpoint}</camunda:inputParameter>
357 <camunda:inputParameter name="payload"><![CDATA[${execution.getVariable("CVRCS_setUpdateDbInstancePayload")}]]></camunda:inputParameter>
358 <camunda:inputParameter name="headers">
359 <camunda:map>
360 <camunda:entry key="content-type">application/soap+xml</camunda:entry>
361 <camunda:entry key="Authorization">#{BasicAuthHeaderValueDB}</camunda:entry>
362 </camunda:map>
363 </camunda:inputParameter>
364 <camunda:inputParameter name="method">POST</camunda:inputParameter>
365 </camunda:inputOutput>
366 <camunda:connectorId>soap-http-connector</camunda:connectorId>
367 </camunda:connector>
368 </bpmn2:extensionElements>
369 <bpmn2:incoming>SequenceFlow_0vj46ej</bpmn2:incoming>
370 <bpmn2:outgoing>SequenceFlow_0sjpja4</bpmn2:outgoing>
371 </bpmn2:serviceTask>
372 <bpmn2:scriptTask id="ScriptTask_1qd3uwb" name="Post Process&#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_1db0ri1</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" />
Arthur Martella587abe32018-05-16 16:36:50 -0400450 <camunda:in source="homingService" target="homingService" />
biniek12e339c2018-04-16 16:14:32 +0200451 </bpmn2:extensionElements>
452 <bpmn2:incoming>SequenceFlow_11efpvh</bpmn2:incoming>
453 <bpmn2:outgoing>SequenceFlow_1jbuf1t</bpmn2:outgoing>
454 </bpmn2:callActivity>
455 <bpmn2:sequenceFlow id="SequenceFlow_1jbuf1t" sourceRef="Task_1l0uvof" targetRef="IntermediateThrowEvent_0prlju0" />
456 <bpmn2:sequenceFlow id="SequenceFlow_17g05fd" sourceRef="DecomposeService" targetRef="ScriptTask_0lpv2da" />
457 <bpmn2:intermediateCatchEvent id="IntermediateCatchEvent_17pzn7m" name="CreateAllottedResourcesBRG">
458 <bpmn2:outgoing>SequenceFlow_0gj4vud</bpmn2:outgoing>
459 <bpmn2:linkEventDefinition name="CreateAllottedResourcesBRG" />
460 </bpmn2:intermediateCatchEvent>
461 <bpmn2:intermediateThrowEvent id="IntermediateThrowEvent_0lt5ltv" name="GoToFinishProcess">
462 <bpmn2:incoming>SequenceFlow_0clhseq</bpmn2:incoming>
463 <bpmn2:linkEventDefinition name="FinishProcess" />
464 </bpmn2:intermediateThrowEvent>
465 <bpmn2:intermediateThrowEvent id="IntermediateThrowEvent_09vobbc" name="GoToCreateVG">
466 <bpmn2:incoming>SequenceFlow_0o6tf9p</bpmn2:incoming>
467 <bpmn2:linkEventDefinition name="CreateVG" />
468 </bpmn2:intermediateThrowEvent>
469 <bpmn2:sequenceFlow id="SequenceFlow_0o6tf9p" sourceRef="ExclusiveGateway_074qh5g" targetRef="IntermediateThrowEvent_09vobbc" />
470 <bpmn2:callActivity id="CallActivity_1els13v" name="DoCreate&#10;VNF and Modules&#10;" calledElement="DoCreateVnfAndModules">
471 <bpmn2:extensionElements>
472 <camunda:in source="msoRequestId" target="msoRequestId" />
473 <camunda:in source="disableRollback" target="disableRollback" />
474 <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" />
475 <camunda:in source="serviceInstanceId" target="serviceInstanceId" />
476 <camunda:in source="productFamilyId" target="productFamilyId" />
477 <camunda:in source="vnfModelInfo" target="vnfModelInfo" />
478 <camunda:in source="lcpCloudRegionId" target="lcpCloudRegionId" />
479 <camunda:in source="tenantId" target="tenantId" />
480 <camunda:in source="sdncVersion" target="sdncVersion" />
481 <camunda:out source="rollbackData" target="DCVAM_rollbackData" />
482 <camunda:out source="WorkflowException" target="WorkflowException" />
483 <camunda:out source="vnfId" target="vnfId" />
484 <camunda:out source="vnfName" target="vnfName" />
485 <camunda:out source="vnfOutputParams" target="vnfOutputParams" />
486 <camunda:out source="rolledBack" target="rolledBack" />
487 <camunda:in source="serviceModelInfo" target="serviceModelInfo" />
488 <camunda:in source="globalSubscriberId" target="globalSubscriberId" />
489 <camunda:in source="serviceDecomposition" target="serviceDecomposition" />
490 </bpmn2:extensionElements>
491 <bpmn2:incoming>SequenceFlow_0ws7fjn</bpmn2:incoming>
492 <bpmn2:outgoing>SequenceFlow_1mkdhw9</bpmn2:outgoing>
493 </bpmn2:callActivity>
494 <bpmn2:scriptTask id="ScriptTask_0n1k77c" name="Prepare to Create VNF" scriptFormat="groovy">
495 <bpmn2:incoming>SequenceFlow_0p75l97</bpmn2:incoming>
496 <bpmn2:outgoing>SequenceFlow_0ws7fjn</bpmn2:outgoing>
497 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.vcpe.scripts.*
498def CreateVcpeResCustService= new CreateVcpeResCustService()
499CreateVcpeResCustService.prepareVnfAndModulesCreate(execution)]]></bpmn2:script>
500 </bpmn2:scriptTask>
501 <bpmn2:intermediateThrowEvent id="IntermediateThrowEvent_1xsowxp" name="GoToCreateAllottedResourcesBRG">
502 <bpmn2:incoming>SequenceFlow_1ufio7c</bpmn2:incoming>
503 <bpmn2:linkEventDefinition name="CreateAllottedResourcesBRG" />
504 </bpmn2:intermediateThrowEvent>
505 <bpmn2:intermediateCatchEvent id="IntermediateCatchEvent_19a50jz" name="CreateVG">
506 <bpmn2:outgoing>SequenceFlow_0aza7xq</bpmn2:outgoing>
507 <bpmn2:linkEventDefinition name="CreateVG" />
508 </bpmn2:intermediateCatchEvent>
509 <bpmn2:exclusiveGateway id="ExclusiveGateway_0yae9sb" name="Create VNF?" default="SequenceFlow_13iuk3s">
510 <bpmn2:incoming>SequenceFlow_0aza7xq</bpmn2:incoming>
511 <bpmn2:outgoing>SequenceFlow_0p75l97</bpmn2:outgoing>
512 <bpmn2:outgoing>SequenceFlow_13iuk3s</bpmn2:outgoing>
513 </bpmn2:exclusiveGateway>
514 <bpmn2:exclusiveGateway id="ExclusiveGateway_1hlbkue">
515 <bpmn2:incoming>SequenceFlow_13iuk3s</bpmn2:incoming>
516 <bpmn2:incoming>SequenceFlow_0k5vcuu</bpmn2:incoming>
517 <bpmn2:outgoing>SequenceFlow_1ufio7c</bpmn2:outgoing>
518 </bpmn2:exclusiveGateway>
519 <bpmn2:sequenceFlow id="SequenceFlow_0ws7fjn" sourceRef="ScriptTask_0n1k77c" targetRef="CallActivity_1els13v" />
520 <bpmn2:sequenceFlow id="SequenceFlow_1mkdhw9" name="in 1702 scope only one VNF will be created - if needed" sourceRef="CallActivity_1els13v" targetRef="ScriptTask_18w0jud">
521 <bpmn2:documentation>in 1702 scope only one VNF will be created</bpmn2:documentation>
522 </bpmn2:sequenceFlow>
523 <bpmn2:sequenceFlow id="SequenceFlow_0p75l97" name="Yes" sourceRef="ExclusiveGateway_0yae9sb" targetRef="ScriptTask_0n1k77c">
524 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("CVRCS_VNFsCount") >0}]]></bpmn2:conditionExpression>
525 </bpmn2:sequenceFlow>
526 <bpmn2:sequenceFlow id="SequenceFlow_1ufio7c" sourceRef="ExclusiveGateway_1hlbkue" targetRef="IntermediateThrowEvent_1xsowxp" />
527 <bpmn2:sequenceFlow id="SequenceFlow_0aza7xq" sourceRef="IntermediateCatchEvent_19a50jz" targetRef="ExclusiveGateway_0yae9sb" />
528 <bpmn2:sequenceFlow id="SequenceFlow_13iuk3s" name="No" sourceRef="ExclusiveGateway_0yae9sb" targetRef="ExclusiveGateway_1hlbkue" />
529 <bpmn2:callActivity id="CallActivity_1ymzucb" name="Call Create TXC Allotted Resource&#10;" calledElement="DoCreateAllottedResourceTXC">
530 <bpmn2:extensionElements>
531 <camunda:in source="msoRequestId" target="msoRequestId" />
532 <camunda:in source="disableRollback" target="disableRollback" />
533 <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" />
534 <camunda:in source="failExists" target="failExists" />
535 <camunda:in source="serviceInstanceId" target="serviceInstanceId" />
536 <camunda:in source="parentServiceInstanceIdTXC" target="parentServiceInstanceId" />
537 <camunda:in source="serviceChainServiceInstanceId" target="serviceChainServiceInstanceId" />
538 <camunda:in source="allottedResourceIdTXC" target="allottedResourceId" />
539 <camunda:in source="allottedResourceModelInfoTXC" target="allottedResourceModelInfo" />
540 <camunda:in source="allottedResourceRoleTXC" target="allottedResourceRole" />
541 <camunda:out source="rollbackData" target="DCARTXC_rollbackData" />
542 <camunda:out source="rolledBack" target="rolledBack" />
543 <camunda:out source="WorkflowException" target="WorkflowException" />
544 <camunda:out source="allottedResourceId" target="DCARTXC_allottedResourceId" />
545 <camunda:out source="vni" target="vni" />
546 <camunda:out source="vgmuxBearerIP" target="vgmuxBearerIP" />
547 <camunda:out source="vgmuxLanIP" target="vgmuxLanIP" />
548 <camunda:in source="allottedResourceTypeTXC" target="allottedResourceType" />
549 <camunda:in source="brgWanMacAddress" target="brgWanMacAddress" />
550 <camunda:in source="globalCustomerId" target="globalCustomerId" />
551 <camunda:in source="subscriptionServiceType" target="subscriptionServiceType" />
552 </bpmn2:extensionElements>
553 <bpmn2:incoming>SequenceFlow_16qob4p</bpmn2:incoming>
554 <bpmn2:outgoing>SequenceFlow_1cgpklo</bpmn2:outgoing>
555 </bpmn2:callActivity>
556 <bpmn2:sequenceFlow id="SequenceFlow_1cgpklo" sourceRef="CallActivity_1ymzucb" targetRef="ExclusiveGateway_074qh5g" />
557 <bpmn2:scriptTask id="ScriptTask_0lpv2da" name="PostProcess&#10;Decompose&#10;Service&#10;" scriptFormat="groovy">
558 <bpmn2:incoming>SequenceFlow_17g05fd</bpmn2:incoming>
559 <bpmn2:outgoing>SequenceFlow_11efpvh</bpmn2:outgoing>
560 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.vcpe.scripts.*
561def CreateVcpeResCustService = new CreateVcpeResCustService()
562CreateVcpeResCustService.processDecomposition(execution)]]></bpmn2:script>
563 </bpmn2:scriptTask>
564 <bpmn2:sequenceFlow id="SequenceFlow_11efpvh" sourceRef="ScriptTask_0lpv2da" targetRef="Task_1l0uvof" />
565 <bpmn2:scriptTask id="ScriptTask_18w0jud" name="Post Process Create VNF" scriptFormat="groovy">
566 <bpmn2:incoming>SequenceFlow_1mkdhw9</bpmn2:incoming>
567 <bpmn2:outgoing>SequenceFlow_0k5vcuu</bpmn2:outgoing>
568 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.vcpe.scripts.*
569def CreateVcpeResCustService= new CreateVcpeResCustService()
570CreateVcpeResCustService.validateVnfCreate(execution)]]></bpmn2:script>
571 </bpmn2:scriptTask>
572 <bpmn2:sequenceFlow id="SequenceFlow_0k5vcuu" sourceRef="ScriptTask_18w0jud" targetRef="ExclusiveGateway_1hlbkue" />
573 <bpmn2:intermediateCatchEvent id="IntermediateCatchEvent_1x88t9v" name="Await AAI Distribution&#10;&#10;">
574 <bpmn2:incoming>SequenceFlow_0sjpja4</bpmn2:incoming>
575 <bpmn2:outgoing>SequenceFlow_1db0ri1</bpmn2:outgoing>
576 <bpmn2:timerEventDefinition>
577 <bpmn2:timeDuration xsi:type="bpmn2:tFormalExpression">${aaiDistDelay}</bpmn2:timeDuration>
578 </bpmn2:timerEventDefinition>
579 </bpmn2:intermediateCatchEvent>
580 <bpmn2:sequenceFlow id="SequenceFlow_0sjpja4" sourceRef="updateInfraRequest" targetRef="IntermediateCatchEvent_1x88t9v" />
581 <bpmn2:sequenceFlow id="SequenceFlow_1db0ri1" sourceRef="IntermediateCatchEvent_1x88t9v" targetRef="IntermediateThrowEvent_1as6hoa" />
582 <bpmn2:sequenceFlow id="SequenceFlow_0gj4vud" sourceRef="IntermediateCatchEvent_17pzn7m" targetRef="Task_14l19kv" />
583 <bpmn2:sequenceFlow id="SequenceFlow_0clhseq" sourceRef="Task_14l19kv" targetRef="IntermediateThrowEvent_0lt5ltv" />
584 <bpmn2:callActivity id="Task_14l19kv" name="Create And Activate Pnf Resource" calledElement="CreateAndActivatePnfResource">
585 <bpmn2:extensionElements>
586 <camunda:in source="timeoutForPnfEntryNotification" target="timeoutForPnfEntryNotification" />
587 <camunda:in source="correlationId" target="correlationId" />
afennerd2d75bb2018-07-16 10:38:05 +0000588 <camunda:in businessKey="#{execution.processBusinessKey}" />
biniek12e339c2018-04-16 16:14:32 +0200589 </bpmn2:extensionElements>
590 <bpmn2:incoming>SequenceFlow_0gj4vud</bpmn2:incoming>
591 <bpmn2:outgoing>SequenceFlow_0clhseq</bpmn2:outgoing>
592 </bpmn2:callActivity>
593 </bpmn2:process>
594 <bpmn2:error id="Error_2" name="MSOWorkflowException" errorCode="MSOWorkflowException" />
595 <bpmn2:error id="Error_1" name="java.lang.Exception" errorCode="java.lang.Exception" />
596 <bpmndi:BPMNDiagram id="BPMNDiagram_1">
Yulian Han1f5b2892018-04-19 10:45:19 +0800597 <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="CreateVcpeResCustServiceV2">
biniek12e339c2018-04-16 16:14:32 +0200598 <bpmndi:BPMNShape id="_BPMNShape_StartEvent_47" bpmnElement="createVCPE_startEvent">
599 <dc:Bounds x="87" y="215" width="36" height="36" />
600 <bpmndi:BPMNLabel>
601 <dc:Bounds x="80" y="256" width="51" height="14" />
602 </bpmndi:BPMNLabel>
603 </bpmndi:BPMNShape>
604 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_61" bpmnElement="preProcessRequest_ScriptTask">
605 <dc:Bounds x="276" y="193" width="100" height="80" />
606 </bpmndi:BPMNShape>
607 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_1" bpmnElement="SequenceFlow_1" sourceElement="_BPMNShape_StartEvent_47" targetElement="_BPMNShape_ScriptTask_61">
608 <di:waypoint xsi:type="dc:Point" x="123" y="233" />
609 <di:waypoint xsi:type="dc:Point" x="276" y="233" />
610 <bpmndi:BPMNLabel>
611 <dc:Bounds x="165" y="233" width="0" height="0" />
612 </bpmndi:BPMNLabel>
613 </bpmndi:BPMNEdge>
614 <bpmndi:BPMNShape id="_BPMNShape_CallActivity_4" bpmnElement="callCompleteMsoProcess_CallActivity">
615 <dc:Bounds x="763" y="1432" width="100" height="80" />
616 </bpmndi:BPMNShape>
617 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_80" bpmnElement="postProcessAndCompletionRequest_ScriptTask">
618 <dc:Bounds x="490" y="1432" width="100" height="80" />
619 </bpmndi:BPMNShape>
620 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_12" bpmnElement="SequenceFlow_7" sourceElement="_BPMNShape_ScriptTask_61" targetElement="_BPMNShape_ScriptTask_127">
621 <di:waypoint xsi:type="dc:Point" x="376" y="233" />
622 <di:waypoint xsi:type="dc:Point" x="467" y="233" />
623 <bpmndi:BPMNLabel>
624 <dc:Bounds x="265" y="194" width="0" height="0" />
625 </bpmndi:BPMNLabel>
626 </bpmndi:BPMNEdge>
627 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_127" bpmnElement="sendSyncAckResponse_ScriptTask">
628 <dc:Bounds x="467" y="193" width="100" height="80" />
629 </bpmndi:BPMNShape>
630 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_42" bpmnElement="SequenceFlow_29" sourceElement="_BPMNShape_ScriptTask_80" targetElement="_BPMNShape_CallActivity_4">
631 <di:waypoint xsi:type="dc:Point" x="590" y="1472" />
632 <di:waypoint xsi:type="dc:Point" x="763" y="1472" />
633 <bpmndi:BPMNLabel>
634 <dc:Bounds x="677" y="1457" width="0" height="0" />
635 </bpmndi:BPMNLabel>
636 </bpmndi:BPMNEdge>
637 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_177" bpmnElement="CreateVCPE_EndEvent">
638 <dc:Bounds x="1262" y="1452" width="36" height="36" />
639 <bpmndi:BPMNLabel>
640 <dc:Bounds x="1269" y="1493" width="21" height="14" />
641 </bpmndi:BPMNLabel>
642 </bpmndi:BPMNShape>
643 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_8" bpmnElement="SequenceFlow_8" sourceElement="_BPMNShape_CallActivity_4" targetElement="_BPMNShape_ScriptTask_337">
644 <di:waypoint xsi:type="dc:Point" x="863" y="1472" />
645 <di:waypoint xsi:type="dc:Point" x="1071" y="1471" />
646 <bpmndi:BPMNLabel>
647 <dc:Bounds x="967" y="1457" width="0" height="0" />
648 </bpmndi:BPMNLabel>
649 </bpmndi:BPMNEdge>
650 <bpmndi:BPMNShape id="_BPMNShape_SubProcess_27" bpmnElement="UnexpectedError_SubProcess_1" isExpanded="true">
651 <dc:Bounds x="1257" y="1702" width="409" height="232" />
652 </bpmndi:BPMNShape>
653 <bpmndi:BPMNShape id="_BPMNShape_StartEvent_70" bpmnElement="StartEvent_1">
654 <dc:Bounds x="1325" y="1807" width="36" height="36" />
655 <bpmndi:BPMNLabel>
656 <dc:Bounds x="1343" y="1848" width="0" height="0" />
657 </bpmndi:BPMNLabel>
658 </bpmndi:BPMNShape>
659 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_269" bpmnElement="ScriptTask_1">
660 <dc:Bounds x="1400" y="1785" width="100" height="80" />
661 </bpmndi:BPMNShape>
662 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_219" bpmnElement="EndEvent_1">
663 <dc:Bounds x="1553" y="1807" width="36" height="36" />
664 <bpmndi:BPMNLabel>
665 <dc:Bounds x="1571" y="1848" width="0" height="0" />
666 </bpmndi:BPMNLabel>
667 </bpmndi:BPMNShape>
668 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_4" bpmnElement="SequenceFlow_2" sourceElement="_BPMNShape_StartEvent_70" targetElement="_BPMNShape_ScriptTask_269">
669 <di:waypoint xsi:type="dc:Point" x="1361" y="1825" />
670 <di:waypoint xsi:type="dc:Point" x="1400" y="1825" />
671 <bpmndi:BPMNLabel>
672 <dc:Bounds x="1389" y="1825" width="0" height="0" />
673 </bpmndi:BPMNLabel>
674 </bpmndi:BPMNEdge>
675 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_5" bpmnElement="SequenceFlow_5" sourceElement="_BPMNShape_ScriptTask_269" targetElement="_BPMNShape_EndEvent_219">
676 <di:waypoint xsi:type="dc:Point" x="1500" y="1825" />
677 <di:waypoint xsi:type="dc:Point" x="1533" y="1825" />
678 <di:waypoint xsi:type="dc:Point" x="1533" y="1825" />
679 <di:waypoint xsi:type="dc:Point" x="1553" y="1825" />
680 <bpmndi:BPMNLabel>
681 <dc:Bounds x="1548" y="1825" width="0" height="0" />
682 </bpmndi:BPMNLabel>
683 </bpmndi:BPMNEdge>
684 <bpmndi:BPMNShape id="_BPMNShape_CallActivity_75" bpmnElement="doCreateServiceInstance_CallActivity">
685 <dc:Bounds x="456" y="543" width="100" height="80" />
686 </bpmndi:BPMNShape>
687 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_2" bpmnElement="SequenceFlow_3" sourceElement="_BPMNShape_ScriptTask_127">
688 <di:waypoint xsi:type="dc:Point" x="567" y="233" />
689 <di:waypoint xsi:type="dc:Point" x="719" y="233" />
690 <bpmndi:BPMNLabel>
691 <dc:Bounds x="643" y="218" width="0" height="0" />
692 </bpmndi:BPMNLabel>
693 </bpmndi:BPMNEdge>
694 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_337" bpmnElement="ScriptTask_2">
695 <dc:Bounds x="1071" y="1431" width="100" height="80" />
696 </bpmndi:BPMNShape>
697 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_3" bpmnElement="SequenceFlow_6" sourceElement="_BPMNShape_ScriptTask_337" targetElement="_BPMNShape_EndEvent_177">
698 <di:waypoint xsi:type="dc:Point" x="1171" y="1470" />
699 <di:waypoint xsi:type="dc:Point" x="1262" y="1470" />
700 <bpmndi:BPMNLabel>
701 <dc:Bounds x="1217" y="1455" width="0" height="0" />
702 </bpmndi:BPMNLabel>
703 </bpmndi:BPMNEdge>
704 <bpmndi:BPMNShape id="_BPMNShape_IntermediateCatchEvent_35" bpmnElement="IntermediateCatchEvent_3">
705 <dc:Bounds x="87" y="370" width="36" height="36" />
706 <bpmndi:BPMNLabel>
707 <dc:Bounds x="80" y="406" width="50" height="14" />
708 </bpmndi:BPMNLabel>
709 </bpmndi:BPMNShape>
710 <bpmndi:BPMNShape id="_BPMNShape_IntermediateCatchEvent_36" bpmnElement="IntermediateCatchEvent_4">
711 <dc:Bounds x="60" y="1454" width="36" height="36" />
712 <bpmndi:BPMNLabel>
713 <dc:Bounds x="39" y="1490" width="78" height="14" />
714 </bpmndi:BPMNLabel>
715 </bpmndi:BPMNShape>
716 <bpmndi:BPMNShape id="_BPMNShape_IntermediateThrowEvent_49" bpmnElement="IntermediateThrowEvent_2">
717 <dc:Bounds x="719" y="215" width="36" height="36" />
718 <bpmndi:BPMNLabel>
719 <dc:Bounds x="697" y="256" width="79" height="14" />
720 </bpmndi:BPMNLabel>
721 </bpmndi:BPMNShape>
722 <bpmndi:BPMNShape id="SubProcess_0s6hpty_di" bpmnElement="SubProcess_0s6hpty" isExpanded="true">
723 <dc:Bounds x="-266" y="1649" width="1482" height="1528" />
724 </bpmndi:BPMNShape>
725 <bpmndi:BPMNShape id="ExclusiveGateway_1vwgs6p_di" bpmnElement="ExclusiveGateway_1vwgs6p" isMarkerVisible="true">
726 <dc:Bounds x="50" y="2971" width="50" height="50" />
727 <bpmndi:BPMNLabel>
728 <dc:Bounds x="38" y="3031" width="78" height="12" />
729 </bpmndi:BPMNLabel>
730 </bpmndi:BPMNShape>
731 <bpmndi:BPMNShape id="StartEvent_1bwmffk_di" bpmnElement="StartEvent_1bwmffk">
732 <dc:Bounds x="-63" y="2979" width="36" height="36" />
733 <bpmndi:BPMNLabel>
734 <dc:Bounds x="-69" y="3020" width="51" height="12" />
735 </bpmndi:BPMNLabel>
736 </bpmndi:BPMNShape>
737 <bpmndi:BPMNShape id="ExclusiveGateway_0ydrtdx_di" bpmnElement="ExclusiveGateway_0ydrtdx" isMarkerVisible="true">
738 <dc:Bounds x="50" y="2888" width="50" height="50" />
739 <bpmndi:BPMNLabel>
740 <dc:Bounds x="-15" y="2903" width="46" height="12" />
741 </bpmndi:BPMNLabel>
742 </bpmndi:BPMNShape>
743 <bpmndi:BPMNShape id="ExclusiveGateway_1kvn1pz_di" bpmnElement="ExclusiveGateway_1kvn1pz" isMarkerVisible="true">
744 <dc:Bounds x="177" y="1821" width="50" height="50" />
745 <bpmndi:BPMNLabel>
746 <dc:Bounds x="110" y="1815" width="78" height="12" />
747 </bpmndi:BPMNLabel>
748 </bpmndi:BPMNShape>
749 <bpmndi:BPMNShape id="CallActivity_0jw5tqa_di" bpmnElement="CallActivity_0jw5tqa">
750 <dc:Bounds x="1023" y="2945" width="100" height="80" />
751 </bpmndi:BPMNShape>
752 <bpmndi:BPMNShape id="EndEvent_04xute7_di" bpmnElement="EndEvent_04xute7">
753 <dc:Bounds x="1160" y="2967" width="36" height="36" />
754 <bpmndi:BPMNLabel>
755 <dc:Bounds x="1133" y="3008" width="90" height="0" />
756 </bpmndi:BPMNLabel>
757 </bpmndi:BPMNShape>
758 <bpmndi:BPMNShape id="ScriptTask_0yk02h3_di" bpmnElement="ScriptTask_0yk02h3">
759 <dc:Bounds x="891" y="2945" width="100" height="80" />
760 </bpmndi:BPMNShape>
761 <bpmndi:BPMNEdge id="SequenceFlow_0zpbskl_di" bpmnElement="SequenceFlow_0zpbskl">
762 <di:waypoint xsi:type="dc:Point" x="75" y="2971" />
763 <di:waypoint xsi:type="dc:Point" x="75" y="2938" />
764 <bpmndi:BPMNLabel>
765 <dc:Bounds x="81" y="2958" width="19" height="12" />
766 </bpmndi:BPMNLabel>
767 </bpmndi:BPMNEdge>
768 <bpmndi:BPMNEdge id="SequenceFlow_0dhf2js_di" bpmnElement="SequenceFlow_0dhf2js">
769 <di:waypoint xsi:type="dc:Point" x="100" y="2996" />
770 <di:waypoint xsi:type="dc:Point" x="734" y="2996" />
771 <di:waypoint xsi:type="dc:Point" x="734" y="2938" />
772 <bpmndi:BPMNLabel>
773 <dc:Bounds x="140" y="3001" width="14" height="12" />
774 </bpmndi:BPMNLabel>
775 </bpmndi:BPMNEdge>
776 <bpmndi:BPMNEdge id="SequenceFlow_1sx5llu_di" bpmnElement="SequenceFlow_1sx5llu">
777 <di:waypoint xsi:type="dc:Point" x="100" y="2913" />
778 <di:waypoint xsi:type="dc:Point" x="405" y="2913" />
779 <di:waypoint xsi:type="dc:Point" x="405" y="2913" />
780 <di:waypoint xsi:type="dc:Point" x="709" y="2913" />
781 <bpmndi:BPMNLabel>
782 <dc:Bounds x="419" y="2917" width="19" height="12" />
783 </bpmndi:BPMNLabel>
784 </bpmndi:BPMNEdge>
785 <bpmndi:BPMNEdge id="SequenceFlow_02o4yqx_di" bpmnElement="SequenceFlow_02o4yqx">
786 <di:waypoint xsi:type="dc:Point" x="75" y="2888" />
787 <di:waypoint xsi:type="dc:Point" x="75" y="2866" />
788 <bpmndi:BPMNLabel>
789 <dc:Bounds x="86" y="2871" width="14" height="12" />
790 </bpmndi:BPMNLabel>
791 </bpmndi:BPMNEdge>
792 <bpmndi:BPMNEdge id="SequenceFlow_19mxskt_di" bpmnElement="SequenceFlow_19mxskt">
793 <di:waypoint xsi:type="dc:Point" x="202" y="1821" />
794 <di:waypoint xsi:type="dc:Point" x="202" y="1725" />
795 <di:waypoint xsi:type="dc:Point" x="681" y="1725" />
796 <di:waypoint xsi:type="dc:Point" x="681" y="1941" />
797 <bpmndi:BPMNLabel>
798 <dc:Bounds x="392" y="1704" width="14" height="12" />
799 </bpmndi:BPMNLabel>
800 </bpmndi:BPMNEdge>
801 <bpmndi:BPMNShape id="ScriptTask_1gacz45_di" bpmnElement="prepareCreateService_scriptTask">
802 <dc:Bounds x="250" y="543" width="100" height="80" />
803 </bpmndi:BPMNShape>
804 <bpmndi:BPMNShape id="ScriptTask_11b4gmn_di" bpmnElement="setPONR_ScriptTask">
805 <dc:Bounds x="204" y="1432" width="100" height="80" />
806 </bpmndi:BPMNShape>
807 <bpmndi:BPMNEdge id="SequenceFlow_12ilko1_di" bpmnElement="SequenceFlow_12ilko1">
808 <di:waypoint xsi:type="dc:Point" x="96" y="1472" />
809 <di:waypoint xsi:type="dc:Point" x="204" y="1472" />
810 <bpmndi:BPMNLabel>
811 <dc:Bounds x="150" y="1447" width="0" height="0" />
812 </bpmndi:BPMNLabel>
813 </bpmndi:BPMNEdge>
814 <bpmndi:BPMNEdge id="SequenceFlow_0afe2pg_di" bpmnElement="SequenceFlow_0afe2pg">
815 <di:waypoint xsi:type="dc:Point" x="304" y="1472" />
816 <di:waypoint xsi:type="dc:Point" x="447" y="1472" />
817 <di:waypoint xsi:type="dc:Point" x="490" y="1472" />
818 <bpmndi:BPMNLabel>
819 <dc:Bounds x="376" y="1457" width="0" height="0" />
820 </bpmndi:BPMNLabel>
821 </bpmndi:BPMNEdge>
822 <bpmndi:BPMNShape id="CallActivity_0oh7wzu_di" bpmnElement="DoRollbackService_CallActivity">
823 <dc:Bounds x="976" y="1926" width="100" height="80" />
824 </bpmndi:BPMNShape>
825 <bpmndi:BPMNShape id="InclusiveGateway_0foywso_di" bpmnElement="InclusiveGateway_0foywso">
826 <dc:Bounds x="709" y="2888" width="50" height="50" />
827 <bpmndi:BPMNLabel>
828 <dc:Bounds x="689" y="2943" width="90" height="0" />
829 </bpmndi:BPMNLabel>
830 </bpmndi:BPMNShape>
831 <bpmndi:BPMNEdge id="SequenceFlow_1f1hd3l_di" bpmnElement="SequenceFlow_1f1hd3l">
832 <di:waypoint xsi:type="dc:Point" x="1026" y="2006" />
833 <di:waypoint xsi:type="dc:Point" x="1026" y="2103" />
834 <bpmndi:BPMNLabel>
835 <dc:Bounds x="996" y="2055" width="90" height="0" />
836 </bpmndi:BPMNLabel>
837 </bpmndi:BPMNEdge>
838 <bpmndi:BPMNEdge id="SequenceFlow_0jg47xm_di" bpmnElement="SequenceFlow_0jg47xm">
839 <di:waypoint xsi:type="dc:Point" x="759" y="2913" />
840 <di:waypoint xsi:type="dc:Point" x="941" y="2913" />
841 <di:waypoint xsi:type="dc:Point" x="941" y="2945" />
842 <bpmndi:BPMNLabel>
843 <dc:Bounds x="805" y="2898" width="90" height="0" />
844 </bpmndi:BPMNLabel>
845 </bpmndi:BPMNEdge>
846 <bpmndi:BPMNEdge id="SequenceFlow_0807ukc_di" bpmnElement="SequenceFlow_0807ukc">
847 <di:waypoint xsi:type="dc:Point" x="991" y="2985" />
848 <di:waypoint xsi:type="dc:Point" x="1023" y="2985" />
849 <bpmndi:BPMNLabel>
850 <dc:Bounds x="962" y="2970" width="90" height="0" />
851 </bpmndi:BPMNLabel>
852 </bpmndi:BPMNEdge>
853 <bpmndi:BPMNEdge id="SequenceFlow_19yywk8_di" bpmnElement="SequenceFlow_19yywk8">
854 <di:waypoint xsi:type="dc:Point" x="1123" y="2985" />
855 <di:waypoint xsi:type="dc:Point" x="1160" y="2985" />
856 <bpmndi:BPMNLabel>
857 <dc:Bounds x="1097" y="2970" width="90" height="0" />
858 </bpmndi:BPMNLabel>
859 </bpmndi:BPMNEdge>
860 <bpmndi:BPMNShape id="IntermediateThrowEvent_0prlju0_di" bpmnElement="IntermediateThrowEvent_0prlju0">
861 <dc:Bounds x="1056" y="370" width="36" height="36" />
862 <bpmndi:BPMNLabel>
863 <dc:Bounds x="1025" y="411" width="97" height="14" />
864 </bpmndi:BPMNLabel>
865 </bpmndi:BPMNShape>
866 <bpmndi:BPMNEdge id="SequenceFlow_0j6sjye_di" bpmnElement="SequenceFlow_0j6sjye">
867 <di:waypoint xsi:type="dc:Point" x="350" y="583" />
868 <di:waypoint xsi:type="dc:Point" x="456" y="583" />
869 <bpmndi:BPMNLabel>
870 <dc:Bounds x="403" y="568" width="0" height="0" />
871 </bpmndi:BPMNLabel>
872 </bpmndi:BPMNEdge>
873 <bpmndi:BPMNShape id="ExclusiveGateway_05indeh_di" bpmnElement="ExclusiveGateway_05indeh" isMarkerVisible="true">
874 <dc:Bounds x="656" y="1941" width="50" height="50" />
875 <bpmndi:BPMNLabel>
876 <dc:Bounds x="718" y="1923" width="82" height="24" />
877 </bpmndi:BPMNLabel>
878 </bpmndi:BPMNShape>
879 <bpmndi:BPMNEdge id="SequenceFlow_0sezboq_di" bpmnElement="SequenceFlow_0sezboq">
880 <di:waypoint xsi:type="dc:Point" x="681" y="1991" />
881 <di:waypoint xsi:type="dc:Point" x="681" y="2128" />
882 <di:waypoint xsi:type="dc:Point" x="1001" y="2128" />
883 <bpmndi:BPMNLabel>
884 <dc:Bounds x="689" y="2045" width="14" height="12" />
885 </bpmndi:BPMNLabel>
886 </bpmndi:BPMNEdge>
887 <bpmndi:BPMNShape id="ServiceTask_16yhzej_di" bpmnElement="updateInfraRequest">
888 <dc:Bounds x="794" y="543" width="100" height="80" />
889 </bpmndi:BPMNShape>
890 <bpmndi:BPMNShape id="ScriptTask_1qd3uwb_di" bpmnElement="ScriptTask_1qd3uwb">
891 <dc:Bounds x="623" y="543" width="100" height="80" />
892 </bpmndi:BPMNShape>
893 <bpmndi:BPMNEdge id="SequenceFlow_1ky2sv9_di" bpmnElement="SequenceFlow_1ky2sv9">
894 <di:waypoint xsi:type="dc:Point" x="556" y="583" />
895 <di:waypoint xsi:type="dc:Point" x="623" y="583" />
896 <bpmndi:BPMNLabel>
897 <dc:Bounds x="590" y="568" width="0" height="0" />
898 </bpmndi:BPMNLabel>
899 </bpmndi:BPMNEdge>
900 <bpmndi:BPMNEdge id="SequenceFlow_0vj46ej_di" bpmnElement="SequenceFlow_0vj46ej">
901 <di:waypoint xsi:type="dc:Point" x="723" y="583" />
902 <di:waypoint xsi:type="dc:Point" x="794" y="583" />
903 <bpmndi:BPMNLabel>
904 <dc:Bounds x="759" y="568" width="0" height="0" />
905 </bpmndi:BPMNLabel>
906 </bpmndi:BPMNEdge>
907 <bpmndi:BPMNShape id="ScriptTask_17doerz_di" bpmnElement="ScriptTask_17doerz">
908 <dc:Bounds x="25" y="2786" width="100" height="80" />
909 </bpmndi:BPMNShape>
910 <bpmndi:BPMNEdge id="SequenceFlow_0zq7i3q_di" bpmnElement="SequenceFlow_0zq7i3q">
911 <di:waypoint xsi:type="dc:Point" x="-27" y="2997" />
912 <di:waypoint xsi:type="dc:Point" x="20" y="2997" />
913 <di:waypoint xsi:type="dc:Point" x="20" y="2996" />
914 <di:waypoint xsi:type="dc:Point" x="50" y="2996" />
915 <bpmndi:BPMNLabel>
916 <dc:Bounds x="-56" y="2998" width="90" height="0" />
917 </bpmndi:BPMNLabel>
918 </bpmndi:BPMNEdge>
919 <bpmndi:BPMNShape id="InclusiveGateway_0m9f5ka_di" bpmnElement="InclusiveGateway_0m9f5ka">
920 <dc:Bounds x="1001" y="2103" width="50" height="50" />
921 <bpmndi:BPMNLabel>
922 <dc:Bounds x="981" y="2158" width="90" height="0" />
923 </bpmndi:BPMNLabel>
924 </bpmndi:BPMNShape>
925 <bpmndi:BPMNShape id="ScriptTask_0wyub4x_di" bpmnElement="ScriptTask_0wyub4x">
926 <dc:Bounds x="684" y="2786" width="100" height="80" />
927 </bpmndi:BPMNShape>
928 <bpmndi:BPMNEdge id="SequenceFlow_1rabks0_di" bpmnElement="SequenceFlow_1rabks0">
929 <di:waypoint xsi:type="dc:Point" x="734" y="2866" />
930 <di:waypoint xsi:type="dc:Point" x="734" y="2888" />
931 <bpmndi:BPMNLabel>
932 <dc:Bounds x="704" y="2877" width="90" height="0" />
933 </bpmndi:BPMNLabel>
934 </bpmndi:BPMNEdge>
935 <bpmndi:BPMNShape id="CallActivity_0w2alah_di" bpmnElement="DecomposeService">
936 <dc:Bounds x="467" y="348" width="100" height="80" />
937 </bpmndi:BPMNShape>
938 <bpmndi:BPMNShape id="ScriptTask_0cdtchu_di" bpmnElement="ScriptTask_0cdtchu">
939 <dc:Bounds x="276" y="348" width="100" height="80" />
940 </bpmndi:BPMNShape>
941 <bpmndi:BPMNEdge id="SequenceFlow_1eu60rt_di" bpmnElement="SequenceFlow_1eu60rt">
942 <di:waypoint xsi:type="dc:Point" x="123" y="388" />
943 <di:waypoint xsi:type="dc:Point" x="276" y="388" />
944 <bpmndi:BPMNLabel>
945 <dc:Bounds x="200" y="373" width="0" height="0" />
946 </bpmndi:BPMNLabel>
947 </bpmndi:BPMNEdge>
948 <bpmndi:BPMNEdge id="SequenceFlow_00h6hmd_di" bpmnElement="SequenceFlow_00h6hmd">
949 <di:waypoint xsi:type="dc:Point" x="376" y="388" />
950 <di:waypoint xsi:type="dc:Point" x="467" y="388" />
951 <bpmndi:BPMNLabel>
952 <dc:Bounds x="422" y="373" width="0" height="0" />
953 </bpmndi:BPMNLabel>
954 </bpmndi:BPMNEdge>
955 <bpmndi:BPMNShape id="ScriptTask_0vf9bei_di" bpmnElement="ScriptTask_0vf9bei">
956 <dc:Bounds x="184" y="801" width="100" height="80" />
957 </bpmndi:BPMNShape>
958 <bpmndi:BPMNShape id="IntermediateCatchEvent_110rm9l_di" bpmnElement="IntermediateCatchEvent_110rm9l">
959 <dc:Bounds x="83" y="823" width="36" height="36" />
960 <bpmndi:BPMNLabel>
961 <dc:Bounds x="57" y="859" width="86" height="24" />
962 </bpmndi:BPMNLabel>
963 </bpmndi:BPMNShape>
964 <bpmndi:BPMNEdge id="SequenceFlow_0x9pjgm_di" bpmnElement="SequenceFlow_0x9pjgm">
965 <di:waypoint xsi:type="dc:Point" x="119" y="841" />
966 <di:waypoint xsi:type="dc:Point" x="184" y="841" />
967 <bpmndi:BPMNLabel>
968 <dc:Bounds x="107" y="826" width="90" height="0" />
969 </bpmndi:BPMNLabel>
970 </bpmndi:BPMNEdge>
971 <bpmndi:BPMNShape id="ExclusiveGateway_06gq6em_di" bpmnElement="ExclusiveGateway_06gq6em" isMarkerVisible="true">
972 <dc:Bounds x="50" y="2603" width="50" height="50" />
973 <bpmndi:BPMNLabel>
974 <dc:Bounds x="-37" y="2618" width="80" height="12" />
975 </bpmndi:BPMNLabel>
976 </bpmndi:BPMNShape>
977 <bpmndi:BPMNShape id="CallActivity_1bpuf2p_di" bpmnElement="CallActivity_1bpuf2p">
978 <dc:Bounds x="152" y="2518" width="100" height="80" />
979 </bpmndi:BPMNShape>
980 <bpmndi:BPMNShape id="InclusiveGateway_131ozdf_di" bpmnElement="InclusiveGateway_131ozdf">
981 <dc:Bounds x="50" y="2431" width="50" height="50" />
982 <bpmndi:BPMNLabel>
983 <dc:Bounds x="30" y="2486" width="90" height="0" />
984 </bpmndi:BPMNLabel>
985 </bpmndi:BPMNShape>
986 <bpmndi:BPMNEdge id="SequenceFlow_0orpdrl_di" bpmnElement="SequenceFlow_0orpdrl">
987 <di:waypoint xsi:type="dc:Point" x="100" y="2628" />
988 <di:waypoint xsi:type="dc:Point" x="202" y="2628" />
989 <di:waypoint xsi:type="dc:Point" x="202" y="2598" />
990 <bpmndi:BPMNLabel>
991 <dc:Bounds x="141" y="2613" width="19" height="12" />
992 </bpmndi:BPMNLabel>
993 </bpmndi:BPMNEdge>
994 <bpmndi:BPMNEdge id="SequenceFlow_1t3cnnx_di" bpmnElement="SequenceFlow_1t3cnnx">
995 <di:waypoint xsi:type="dc:Point" x="202" y="2518" />
996 <di:waypoint xsi:type="dc:Point" x="202" y="2481" />
997 <bpmndi:BPMNLabel>
998 <dc:Bounds x="172" y="2500" width="90" height="0" />
999 </bpmndi:BPMNLabel>
1000 </bpmndi:BPMNEdge>
1001 <bpmndi:BPMNEdge id="SequenceFlow_0ya1cr3_di" bpmnElement="SequenceFlow_0ya1cr3">
1002 <di:waypoint xsi:type="dc:Point" x="75" y="2603" />
1003 <di:waypoint xsi:type="dc:Point" x="75" y="2542" />
1004 <di:waypoint xsi:type="dc:Point" x="75" y="2542" />
1005 <di:waypoint xsi:type="dc:Point" x="75" y="2481" />
1006 <bpmndi:BPMNLabel>
1007 <dc:Bounds x="88" y="2508" width="14" height="12" />
1008 </bpmndi:BPMNLabel>
1009 </bpmndi:BPMNEdge>
1010 <bpmndi:BPMNShape id="ExclusiveGateway_1oudh6l_di" bpmnElement="ExclusiveGateway_1oudh6l" isMarkerVisible="true">
1011 <dc:Bounds x="332" y="816" width="50" height="50" />
1012 <bpmndi:BPMNLabel>
1013 <dc:Bounds x="399" y="829" width="76" height="24" />
1014 </bpmndi:BPMNLabel>
1015 </bpmndi:BPMNShape>
1016 <bpmndi:BPMNShape id="ExclusiveGateway_074qh5g_di" bpmnElement="ExclusiveGateway_074qh5g" isMarkerVisible="true">
1017 <dc:Bounds x="512" y="796" width="50" height="50" />
1018 <bpmndi:BPMNLabel>
1019 <dc:Bounds x="492" y="846" width="90" height="0" />
1020 </bpmndi:BPMNLabel>
1021 </bpmndi:BPMNShape>
1022 <bpmndi:BPMNEdge id="SequenceFlow_0ofjahh_di" bpmnElement="SequenceFlow_0ofjahh">
1023 <di:waypoint xsi:type="dc:Point" x="357" y="866" />
1024 <di:waypoint xsi:type="dc:Point" x="357" y="901" />
1025 <di:waypoint xsi:type="dc:Point" x="537" y="901" />
1026 <di:waypoint xsi:type="dc:Point" x="537" y="846" />
1027 <bpmndi:BPMNLabel>
1028 <dc:Bounds x="441" y="886" width="16" height="12" />
1029 </bpmndi:BPMNLabel>
1030 </bpmndi:BPMNEdge>
1031 <bpmndi:BPMNEdge id="SequenceFlow_1kgaq0j_di" bpmnElement="SequenceFlow_1kgaq0j">
1032 <di:waypoint xsi:type="dc:Point" x="284" y="841" />
1033 <di:waypoint xsi:type="dc:Point" x="332" y="841" />
1034 <bpmndi:BPMNLabel>
1035 <dc:Bounds x="263" y="826" width="90" height="0" />
1036 </bpmndi:BPMNLabel>
1037 </bpmndi:BPMNEdge>
1038 <bpmndi:BPMNEdge id="SequenceFlow_16qob4p_di" bpmnElement="SequenceFlow_16qob4p">
1039 <di:waypoint xsi:type="dc:Point" x="357" y="816" />
1040 <di:waypoint xsi:type="dc:Point" x="357" y="730" />
1041 <di:waypoint xsi:type="dc:Point" x="400" y="730" />
1042 <bpmndi:BPMNLabel>
1043 <dc:Bounds x="362" y="763" width="21" height="12" />
1044 </bpmndi:BPMNLabel>
1045 </bpmndi:BPMNEdge>
1046 <bpmndi:BPMNShape id="ExclusiveGateway_14tl857_di" bpmnElement="ExclusiveGateway_14tl857" isMarkerVisible="true">
1047 <dc:Bounds x="50" y="2282" width="50" height="50" />
1048 <bpmndi:BPMNLabel>
1049 <dc:Bounds x="-24" y="2297" width="57" height="12" />
1050 </bpmndi:BPMNLabel>
1051 </bpmndi:BPMNShape>
1052 <bpmndi:BPMNShape id="InclusiveGateway_142br6v_di" bpmnElement="InclusiveGateway_142br6v">
1053 <dc:Bounds x="50" y="2103" width="50" height="50" />
1054 <bpmndi:BPMNLabel>
1055 <dc:Bounds x="30" y="2158" width="90" height="0" />
1056 </bpmndi:BPMNLabel>
1057 </bpmndi:BPMNShape>
1058 <bpmndi:BPMNEdge id="SequenceFlow_1kpdu1j_di" bpmnElement="SequenceFlow_1kpdu1j">
1059 <di:waypoint xsi:type="dc:Point" x="75" y="2282" />
1060 <di:waypoint xsi:type="dc:Point" x="75" y="2153" />
1061 <bpmndi:BPMNLabel>
1062 <dc:Bounds x="83" y="2218" width="14" height="12" />
1063 </bpmndi:BPMNLabel>
1064 </bpmndi:BPMNEdge>
1065 <bpmndi:BPMNShape id="ExclusiveGateway_1mjdcct_di" bpmnElement="ExclusiveGateway_1mjdcct" isMarkerVisible="true">
1066 <dc:Bounds x="177" y="2431" width="50" height="50" />
1067 <bpmndi:BPMNLabel>
1068 <dc:Bounds x="178" y="2393" width="48" height="24" />
1069 </bpmndi:BPMNLabel>
1070 </bpmndi:BPMNShape>
1071 <bpmndi:BPMNEdge id="SequenceFlow_1sim44y_di" bpmnElement="SequenceFlow_1sim44y">
1072 <di:waypoint xsi:type="dc:Point" x="177" y="2456" />
1073 <di:waypoint xsi:type="dc:Point" x="100" y="2456" />
1074 <bpmndi:BPMNLabel>
1075 <dc:Bounds x="107" y="2431" width="19" height="12" />
1076 </bpmndi:BPMNLabel>
1077 </bpmndi:BPMNEdge>
1078 <bpmndi:BPMNEdge id="SequenceFlow_0dr2fem_di" bpmnElement="SequenceFlow_0dr2fem">
1079 <di:waypoint xsi:type="dc:Point" x="226" y="2457" />
1080 <di:waypoint xsi:type="dc:Point" x="734" y="2457" />
1081 <di:waypoint xsi:type="dc:Point" x="734" y="2695" />
1082 <bpmndi:BPMNLabel>
1083 <dc:Bounds x="316" y="2436" width="14" height="12" />
1084 </bpmndi:BPMNLabel>
1085 </bpmndi:BPMNEdge>
1086 <bpmndi:BPMNShape id="ExclusiveGateway_05dg1m1_di" bpmnElement="ExclusiveGateway_05dg1m1" isMarkerVisible="true">
1087 <dc:Bounds x="177" y="2103" width="50" height="50" />
1088 <bpmndi:BPMNLabel>
1089 <dc:Bounds x="178" y="2064" width="48" height="24" />
1090 </bpmndi:BPMNLabel>
1091 </bpmndi:BPMNShape>
1092 <bpmndi:BPMNEdge id="SequenceFlow_1quvahv_di" bpmnElement="SequenceFlow_1quvahv">
1093 <di:waypoint xsi:type="dc:Point" x="177" y="2128" />
1094 <di:waypoint xsi:type="dc:Point" x="100" y="2128" />
1095 <bpmndi:BPMNLabel>
1096 <dc:Bounds x="129" y="2103" width="19" height="12" />
1097 </bpmndi:BPMNLabel>
1098 </bpmndi:BPMNEdge>
1099 <bpmndi:BPMNEdge id="SequenceFlow_1mbymcu_di" bpmnElement="SequenceFlow_1mbymcu">
1100 <di:waypoint xsi:type="dc:Point" x="227" y="2128" />
1101 <di:waypoint xsi:type="dc:Point" x="1001" y="2128" />
1102 <bpmndi:BPMNLabel>
1103 <dc:Bounds x="290" y="2097" width="14" height="12" />
1104 </bpmndi:BPMNLabel>
1105 </bpmndi:BPMNEdge>
1106 <bpmndi:BPMNShape id="IntermediateCatchEvent_1i1nwfx_di" bpmnElement="IntermediateCatchEvent_1i1nwfx">
1107 <dc:Bounds x="87" y="565" width="36" height="36" />
1108 <bpmndi:BPMNLabel>
1109 <dc:Bounds x="72" y="601" width="65" height="14" />
1110 </bpmndi:BPMNLabel>
1111 </bpmndi:BPMNShape>
1112 <bpmndi:BPMNShape id="IntermediateThrowEvent_1as6hoa_di" bpmnElement="IntermediateThrowEvent_1as6hoa">
1113 <dc:Bounds x="1027" y="666" width="36" height="36" />
1114 <bpmndi:BPMNLabel>
1115 <dc:Bounds x="1002" y="707" width="85" height="36" />
1116 </bpmndi:BPMNLabel>
1117 </bpmndi:BPMNShape>
1118 <bpmndi:BPMNEdge id="SequenceFlow_15odbkz_di" bpmnElement="SequenceFlow_15odbkz">
1119 <di:waypoint xsi:type="dc:Point" x="123" y="583" />
1120 <di:waypoint xsi:type="dc:Point" x="250" y="583" />
1121 <bpmndi:BPMNLabel>
1122 <dc:Bounds x="187" y="558" width="0" height="0" />
1123 </bpmndi:BPMNLabel>
1124 </bpmndi:BPMNEdge>
1125 <bpmndi:BPMNShape id="CallActivity_07nu6s6_di" bpmnElement="Task_1l0uvof">
1126 <dc:Bounds x="856" y="348" width="100" height="80" />
1127 </bpmndi:BPMNShape>
1128 <bpmndi:BPMNEdge id="SequenceFlow_1jbuf1t_di" bpmnElement="SequenceFlow_1jbuf1t">
1129 <di:waypoint xsi:type="dc:Point" x="956" y="388" />
1130 <di:waypoint xsi:type="dc:Point" x="1056" y="388" />
1131 <bpmndi:BPMNLabel>
1132 <dc:Bounds x="961" y="373" width="90" height="0" />
1133 </bpmndi:BPMNLabel>
1134 </bpmndi:BPMNEdge>
1135 <bpmndi:BPMNEdge id="SequenceFlow_17g05fd_di" bpmnElement="SequenceFlow_17g05fd">
1136 <di:waypoint xsi:type="dc:Point" x="567" y="388" />
1137 <di:waypoint xsi:type="dc:Point" x="658" y="388" />
1138 <bpmndi:BPMNLabel>
1139 <dc:Bounds x="567.5" y="373" width="90" height="0" />
1140 </bpmndi:BPMNLabel>
1141 </bpmndi:BPMNEdge>
1142 <bpmndi:BPMNShape id="ExclusiveGateway_0y7gtd9_di" bpmnElement="ExclusiveGateway_0y7gtd9" isMarkerVisible="true">
1143 <dc:Bounds x="50" y="2695" width="50" height="50" />
1144 <bpmndi:BPMNLabel>
1145 <dc:Bounds x="-39" y="2708" width="72" height="12" />
1146 </bpmndi:BPMNLabel>
1147 </bpmndi:BPMNShape>
1148 <bpmndi:BPMNEdge id="SequenceFlow_0ftzjjm_di" bpmnElement="SequenceFlow_0ftzjjm">
1149 <di:waypoint xsi:type="dc:Point" x="75" y="2786" />
1150 <di:waypoint xsi:type="dc:Point" x="75" y="2745" />
1151 <bpmndi:BPMNLabel>
1152 <dc:Bounds x="45" y="2766" width="90" height="0" />
1153 </bpmndi:BPMNLabel>
1154 </bpmndi:BPMNEdge>
1155 <bpmndi:BPMNEdge id="SequenceFlow_12dakwh_di" bpmnElement="SequenceFlow_12dakwh">
1156 <di:waypoint xsi:type="dc:Point" x="75" y="2695" />
1157 <di:waypoint xsi:type="dc:Point" x="75" y="2653" />
1158 <bpmndi:BPMNLabel>
1159 <dc:Bounds x="83" y="2666" width="14" height="12" />
1160 </bpmndi:BPMNLabel>
1161 </bpmndi:BPMNEdge>
1162 <bpmndi:BPMNShape id="InclusiveGateway_1xenadu_di" bpmnElement="InclusiveGateway_1xenadu">
1163 <dc:Bounds x="709" y="2695" width="50" height="50" />
1164 <bpmndi:BPMNLabel>
1165 <dc:Bounds x="689" y="2750" width="90" height="0" />
1166 </bpmndi:BPMNLabel>
1167 </bpmndi:BPMNShape>
1168 <bpmndi:BPMNEdge id="SequenceFlow_1lv5ld6_di" bpmnElement="SequenceFlow_1lv5ld6">
1169 <di:waypoint xsi:type="dc:Point" x="1026" y="2153" />
1170 <di:waypoint xsi:type="dc:Point" x="1026" y="2720" />
1171 <di:waypoint xsi:type="dc:Point" x="759" y="2720" />
1172 <bpmndi:BPMNLabel>
1173 <dc:Bounds x="996" y="2437" width="90" height="0" />
1174 </bpmndi:BPMNLabel>
1175 </bpmndi:BPMNEdge>
1176 <bpmndi:BPMNEdge id="SequenceFlow_0dvsqpp_di" bpmnElement="SequenceFlow_0dvsqpp">
1177 <di:waypoint xsi:type="dc:Point" x="734" y="2745" />
1178 <di:waypoint xsi:type="dc:Point" x="734" y="2786" />
1179 <bpmndi:BPMNLabel>
1180 <dc:Bounds x="704" y="2766" width="90" height="0" />
1181 </bpmndi:BPMNLabel>
1182 </bpmndi:BPMNEdge>
1183 <bpmndi:BPMNEdge id="SequenceFlow_09nn9a9_di" bpmnElement="SequenceFlow_09nn9a9">
1184 <di:waypoint xsi:type="dc:Point" x="100" y="2720" />
1185 <di:waypoint xsi:type="dc:Point" x="423" y="2720" />
1186 <di:waypoint xsi:type="dc:Point" x="423" y="2720" />
1187 <di:waypoint xsi:type="dc:Point" x="709" y="2720" />
1188 <bpmndi:BPMNLabel>
1189 <dc:Bounds x="144" y="2693" width="19" height="12" />
1190 </bpmndi:BPMNLabel>
1191 </bpmndi:BPMNEdge>
1192 <bpmndi:BPMNEdge id="SequenceFlow_027lz43_di" bpmnElement="SequenceFlow_027lz43">
1193 <di:waypoint xsi:type="dc:Point" x="75" y="2431" />
1194 <di:waypoint xsi:type="dc:Point" x="75" y="2332" />
1195 <bpmndi:BPMNLabel>
1196 <dc:Bounds x="45" y="2372" width="90" height="0" />
1197 </bpmndi:BPMNLabel>
1198 </bpmndi:BPMNEdge>
1199 <bpmndi:BPMNEdge id="SequenceFlow_0t3mtod_di" bpmnElement="SequenceFlow_0t3mtod">
1200 <di:waypoint xsi:type="dc:Point" x="75" y="2103" />
1201 <di:waypoint xsi:type="dc:Point" x="75" y="1846" />
1202 <di:waypoint xsi:type="dc:Point" x="177" y="1846" />
1203 <bpmndi:BPMNLabel>
1204 <dc:Bounds x="45" y="1965" width="90" height="0" />
1205 </bpmndi:BPMNLabel>
1206 </bpmndi:BPMNEdge>
1207 <bpmndi:BPMNShape id="IntermediateCatchEvent_17pzn7m_di" bpmnElement="IntermediateCatchEvent_17pzn7m">
1208 <dc:Bounds x="83" y="1259" width="36" height="36" />
1209 <bpmndi:BPMNLabel>
1210 <dc:Bounds x="57" y="1295" width="80" height="24" />
1211 </bpmndi:BPMNLabel>
1212 </bpmndi:BPMNShape>
1213 <bpmndi:BPMNShape id="IntermediateThrowEvent_0lt5ltv_di" bpmnElement="IntermediateThrowEvent_0lt5ltv">
1214 <dc:Bounds x="670" y="1259" width="36" height="36" />
1215 <bpmndi:BPMNLabel>
1216 <dc:Bounds x="645" y="1306" width="85" height="20" />
1217 </bpmndi:BPMNLabel>
1218 </bpmndi:BPMNShape>
1219 <bpmndi:BPMNShape id="IntermediateThrowEvent_09vobbc_di" bpmnElement="IntermediateThrowEvent_09vobbc">
1220 <dc:Bounds x="670" y="803" width="36" height="36" />
1221 <bpmndi:BPMNLabel>
1222 <dc:Bounds x="651" y="844" width="85" height="36" />
1223 </bpmndi:BPMNLabel>
1224 </bpmndi:BPMNShape>
1225 <bpmndi:BPMNEdge id="SequenceFlow_0o6tf9p_di" bpmnElement="SequenceFlow_0o6tf9p">
1226 <di:waypoint xsi:type="dc:Point" x="562" y="821" />
1227 <di:waypoint xsi:type="dc:Point" x="670" y="821" />
1228 <bpmndi:BPMNLabel>
1229 <dc:Bounds x="616" y="800" width="0" height="12" />
1230 </bpmndi:BPMNLabel>
1231 </bpmndi:BPMNEdge>
1232 <bpmndi:BPMNShape id="CallActivity_1els13v_di" bpmnElement="CallActivity_1els13v">
1233 <dc:Bounds x="586" y="942" width="100" height="80" />
1234 </bpmndi:BPMNShape>
1235 <bpmndi:BPMNShape id="ScriptTask_0n1k77c_di" bpmnElement="ScriptTask_0n1k77c">
1236 <dc:Bounds x="413" y="942" width="100" height="80" />
1237 </bpmndi:BPMNShape>
1238 <bpmndi:BPMNShape id="IntermediateThrowEvent_1xsowxp_di" bpmnElement="IntermediateThrowEvent_1xsowxp">
1239 <dc:Bounds x="1027" y="1031" width="36" height="36" />
1240 <bpmndi:BPMNLabel>
1241 <dc:Bounds x="1001" y="1072" width="87" height="24" />
1242 </bpmndi:BPMNLabel>
1243 </bpmndi:BPMNShape>
1244 <bpmndi:BPMNShape id="IntermediateCatchEvent_19a50jz_di" bpmnElement="IntermediateCatchEvent_19a50jz">
1245 <dc:Bounds x="77" y="1047" width="36" height="36" />
1246 <bpmndi:BPMNLabel>
1247 <dc:Bounds x="70" y="1083" width="48" height="12" />
1248 </bpmndi:BPMNLabel>
1249 </bpmndi:BPMNShape>
1250 <bpmndi:BPMNShape id="ExclusiveGateway_0yae9sb_di" bpmnElement="ExclusiveGateway_0yae9sb" isMarkerVisible="true">
1251 <dc:Bounds x="326" y="1040" width="50" height="50" />
1252 <bpmndi:BPMNLabel>
1253 <dc:Bounds x="388" y="1059" width="67" height="12" />
1254 </bpmndi:BPMNLabel>
1255 </bpmndi:BPMNShape>
1256 <bpmndi:BPMNShape id="ExclusiveGateway_1hlbkue_di" bpmnElement="ExclusiveGateway_1hlbkue" isMarkerVisible="true">
1257 <dc:Bounds x="892" y="1024" width="50" height="50" />
1258 <bpmndi:BPMNLabel>
1259 <dc:Bounds x="872" y="1079" width="0" height="12" />
1260 </bpmndi:BPMNLabel>
1261 </bpmndi:BPMNShape>
1262 <bpmndi:BPMNEdge id="SequenceFlow_0ws7fjn_di" bpmnElement="SequenceFlow_0ws7fjn">
1263 <di:waypoint xsi:type="dc:Point" x="513" y="982" />
1264 <di:waypoint xsi:type="dc:Point" x="586" y="982" />
1265 <bpmndi:BPMNLabel>
1266 <dc:Bounds x="504.5" y="961" width="90" height="12" />
1267 </bpmndi:BPMNLabel>
1268 </bpmndi:BPMNEdge>
1269 <bpmndi:BPMNEdge id="SequenceFlow_1mkdhw9_di" bpmnElement="SequenceFlow_1mkdhw9">
1270 <di:waypoint xsi:type="dc:Point" x="686" y="982" />
1271 <di:waypoint xsi:type="dc:Point" x="749" y="982" />
1272 <bpmndi:BPMNLabel>
1273 <dc:Bounds x="888.7571646117599" y="923.4934735403681" width="84" height="48" />
1274 </bpmndi:BPMNLabel>
1275 </bpmndi:BPMNEdge>
1276 <bpmndi:BPMNEdge id="SequenceFlow_0p75l97_di" bpmnElement="SequenceFlow_0p75l97">
1277 <di:waypoint xsi:type="dc:Point" x="351" y="1040" />
1278 <di:waypoint xsi:type="dc:Point" x="351" y="982" />
1279 <di:waypoint xsi:type="dc:Point" x="413" y="982" />
1280 <bpmndi:BPMNLabel>
1281 <dc:Bounds x="362" y="1015" width="19" height="12" />
1282 </bpmndi:BPMNLabel>
1283 </bpmndi:BPMNEdge>
1284 <bpmndi:BPMNEdge id="SequenceFlow_1ufio7c_di" bpmnElement="SequenceFlow_1ufio7c">
1285 <di:waypoint xsi:type="dc:Point" x="942" y="1049" />
1286 <di:waypoint xsi:type="dc:Point" x="1027" y="1049" />
1287 <bpmndi:BPMNLabel>
1288 <dc:Bounds x="940.5" y="1024" width="0" height="12" />
1289 </bpmndi:BPMNLabel>
1290 </bpmndi:BPMNEdge>
1291 <bpmndi:BPMNEdge id="SequenceFlow_0aza7xq_di" bpmnElement="SequenceFlow_0aza7xq">
1292 <di:waypoint xsi:type="dc:Point" x="113" y="1065" />
1293 <di:waypoint xsi:type="dc:Point" x="326" y="1065" />
1294 <bpmndi:BPMNLabel>
1295 <dc:Bounds x="175.5" y="1040" width="0" height="12" />
1296 </bpmndi:BPMNLabel>
1297 </bpmndi:BPMNEdge>
1298 <bpmndi:BPMNEdge id="SequenceFlow_13iuk3s_di" bpmnElement="SequenceFlow_13iuk3s">
1299 <di:waypoint xsi:type="dc:Point" x="351" y="1091" />
1300 <di:waypoint xsi:type="dc:Point" x="351" y="1114" />
1301 <di:waypoint xsi:type="dc:Point" x="917" y="1114" />
1302 <di:waypoint xsi:type="dc:Point" x="917" y="1075" />
1303 <bpmndi:BPMNLabel>
1304 <dc:Bounds x="596" y="1090" width="16" height="12" />
1305 </bpmndi:BPMNLabel>
1306 </bpmndi:BPMNEdge>
1307 <bpmndi:BPMNShape id="CallActivity_071yaf8_di" bpmnElement="CallActivity_071yaf8">
1308 <dc:Bounds x="321" y="1806" width="100" height="80" />
1309 </bpmndi:BPMNShape>
1310 <bpmndi:BPMNEdge id="SequenceFlow_1sl79hn_di" bpmnElement="SequenceFlow_1sl79hn">
1311 <di:waypoint xsi:type="dc:Point" x="227" y="1846" />
1312 <di:waypoint xsi:type="dc:Point" x="256" y="1846" />
1313 <di:waypoint xsi:type="dc:Point" x="256" y="1846" />
1314 <di:waypoint xsi:type="dc:Point" x="321" y="1846" />
1315 <bpmndi:BPMNLabel>
1316 <dc:Bounds x="271" y="1826" width="19" height="12" />
1317 </bpmndi:BPMNLabel>
1318 </bpmndi:BPMNEdge>
1319 <bpmndi:BPMNShape id="ExclusiveGateway_0y158bb_di" bpmnElement="ExclusiveGateway_0y158bb" isMarkerVisible="true">
1320 <dc:Bounds x="521" y="1821" width="50" height="50" />
1321 <bpmndi:BPMNLabel>
1322 <dc:Bounds x="522" y="1782" width="48" height="24" />
1323 </bpmndi:BPMNLabel>
1324 </bpmndi:BPMNShape>
1325 <bpmndi:BPMNEdge id="SequenceFlow_0ne9n0g_di" bpmnElement="SequenceFlow_0ne9n0g">
1326 <di:waypoint xsi:type="dc:Point" x="421" y="1846" />
1327 <di:waypoint xsi:type="dc:Point" x="521" y="1846" />
1328 <bpmndi:BPMNLabel>
1329 <dc:Bounds x="426" y="1825" width="90" height="12" />
1330 </bpmndi:BPMNLabel>
1331 </bpmndi:BPMNEdge>
1332 <bpmndi:BPMNEdge id="SequenceFlow_1a7e8l1_di" bpmnElement="SequenceFlow_1a7e8l1">
1333 <di:waypoint xsi:type="dc:Point" x="706" y="1966" />
1334 <di:waypoint xsi:type="dc:Point" x="976" y="1966" />
1335 <bpmndi:BPMNLabel>
1336 <dc:Bounds x="832" y="1945" width="19" height="12" />
1337 </bpmndi:BPMNLabel>
1338 </bpmndi:BPMNEdge>
1339 <bpmndi:BPMNEdge id="SequenceFlow_00by7l7_di" bpmnElement="SequenceFlow_00by7l7">
1340 <di:waypoint xsi:type="dc:Point" x="546" y="1871" />
1341 <di:waypoint xsi:type="dc:Point" x="546" y="2128" />
1342 <di:waypoint xsi:type="dc:Point" x="1001" y="2128" />
1343 <bpmndi:BPMNLabel>
1344 <dc:Bounds x="554" y="1994" width="14" height="12" />
1345 </bpmndi:BPMNLabel>
1346 </bpmndi:BPMNEdge>
1347 <bpmndi:BPMNEdge id="SequenceFlow_17cz98f_di" bpmnElement="SequenceFlow_17cz98f">
1348 <di:waypoint xsi:type="dc:Point" x="559" y="1858" />
1349 <di:waypoint xsi:type="dc:Point" x="668" y="1954" />
1350 <bpmndi:BPMNLabel>
1351 <dc:Bounds x="614.8182269768699" y="1888.8734385586085" width="19" height="12" />
1352 </bpmndi:BPMNLabel>
1353 </bpmndi:BPMNEdge>
1354 <bpmndi:BPMNShape id="CallActivity_1cl4iu4_di" bpmnElement="CallActivity_1cl4iu4">
1355 <dc:Bounds x="152" y="2193" width="100" height="80" />
1356 </bpmndi:BPMNShape>
1357 <bpmndi:BPMNEdge id="SequenceFlow_1mpsdaj_di" bpmnElement="SequenceFlow_1mpsdaj">
1358 <di:waypoint xsi:type="dc:Point" x="202" y="2193" />
1359 <di:waypoint xsi:type="dc:Point" x="202" y="2153" />
1360 <bpmndi:BPMNLabel>
1361 <dc:Bounds x="172" y="2167" width="90" height="12" />
1362 </bpmndi:BPMNLabel>
1363 </bpmndi:BPMNEdge>
1364 <bpmndi:BPMNEdge id="SequenceFlow_007p8k3_di" bpmnElement="SequenceFlow_007p8k3">
1365 <di:waypoint xsi:type="dc:Point" x="100" y="2307" />
1366 <di:waypoint xsi:type="dc:Point" x="202" y="2307" />
1367 <di:waypoint xsi:type="dc:Point" x="202" y="2273" />
1368 <bpmndi:BPMNLabel>
1369 <dc:Bounds x="142" y="2286" width="19" height="12" />
1370 </bpmndi:BPMNLabel>
1371 </bpmndi:BPMNEdge>
1372 <bpmndi:BPMNShape id="CallActivity_1ymzucb_di" bpmnElement="CallActivity_1ymzucb">
1373 <dc:Bounds x="400" y="690" width="100" height="80" />
1374 </bpmndi:BPMNShape>
1375 <bpmndi:BPMNEdge id="SequenceFlow_1cgpklo_di" bpmnElement="SequenceFlow_1cgpklo">
1376 <di:waypoint xsi:type="dc:Point" x="500" y="730" />
1377 <di:waypoint xsi:type="dc:Point" x="538" y="730" />
1378 <di:waypoint xsi:type="dc:Point" x="538" y="797" />
1379 <bpmndi:BPMNLabel>
1380 <dc:Bounds x="474" y="715" width="90" height="0" />
1381 </bpmndi:BPMNLabel>
1382 </bpmndi:BPMNEdge>
1383 <bpmndi:BPMNShape id="ScriptTask_0lpv2da_di" bpmnElement="ScriptTask_0lpv2da">
1384 <dc:Bounds x="658" y="348" width="100" height="80" />
1385 </bpmndi:BPMNShape>
1386 <bpmndi:BPMNEdge id="SequenceFlow_11efpvh_di" bpmnElement="SequenceFlow_11efpvh">
1387 <di:waypoint xsi:type="dc:Point" x="758" y="388" />
1388 <di:waypoint xsi:type="dc:Point" x="856" y="388" />
1389 <bpmndi:BPMNLabel>
1390 <dc:Bounds x="807" y="367" width="0" height="12" />
1391 </bpmndi:BPMNLabel>
1392 </bpmndi:BPMNEdge>
1393 <bpmndi:BPMNShape id="ScriptTask_18w0jud_di" bpmnElement="ScriptTask_18w0jud">
1394 <dc:Bounds x="749" y="942" width="100" height="80" />
1395 </bpmndi:BPMNShape>
1396 <bpmndi:BPMNEdge id="SequenceFlow_0k5vcuu_di" bpmnElement="SequenceFlow_0k5vcuu">
1397 <di:waypoint xsi:type="dc:Point" x="849" y="982" />
1398 <di:waypoint xsi:type="dc:Point" x="917" y="982" />
1399 <di:waypoint xsi:type="dc:Point" x="917" y="1024" />
1400 <bpmndi:BPMNLabel>
1401 <dc:Bounds x="883" y="961" width="0" height="12" />
1402 </bpmndi:BPMNLabel>
1403 </bpmndi:BPMNEdge>
1404 <bpmndi:BPMNShape id="IntermediateCatchEvent_1x88t9v_di" bpmnElement="IntermediateCatchEvent_1x88t9v">
1405 <dc:Bounds x="1027" y="565" width="36" height="36" />
1406 <bpmndi:BPMNLabel>
1407 <dc:Bounds x="1018" y="530" width="54" height="48" />
1408 </bpmndi:BPMNLabel>
1409 </bpmndi:BPMNShape>
1410 <bpmndi:BPMNEdge id="SequenceFlow_0sjpja4_di" bpmnElement="SequenceFlow_0sjpja4">
1411 <di:waypoint xsi:type="dc:Point" x="894" y="583" />
1412 <di:waypoint xsi:type="dc:Point" x="1027" y="583" />
1413 <bpmndi:BPMNLabel>
1414 <dc:Bounds x="960.5" y="562" width="0" height="12" />
1415 </bpmndi:BPMNLabel>
1416 </bpmndi:BPMNEdge>
1417 <bpmndi:BPMNEdge id="SequenceFlow_1db0ri1_di" bpmnElement="SequenceFlow_1db0ri1">
1418 <di:waypoint xsi:type="dc:Point" x="1045" y="601" />
1419 <di:waypoint xsi:type="dc:Point" x="1045" y="666" />
1420 <bpmndi:BPMNLabel>
1421 <dc:Bounds x="1060" y="627.5" width="0" height="12" />
1422 </bpmndi:BPMNLabel>
1423 </bpmndi:BPMNEdge>
1424 <bpmndi:BPMNEdge id="SequenceFlow_0gj4vud_di" bpmnElement="SequenceFlow_0gj4vud">
1425 <di:waypoint xsi:type="dc:Point" x="119" y="1277" />
1426 <di:waypoint xsi:type="dc:Point" x="345" y="1277" />
1427 <bpmndi:BPMNLabel>
1428 <dc:Bounds x="232" y="1257" width="0" height="10" />
1429 </bpmndi:BPMNLabel>
1430 </bpmndi:BPMNEdge>
1431 <bpmndi:BPMNEdge id="SequenceFlow_0clhseq_di" bpmnElement="SequenceFlow_0clhseq">
1432 <di:waypoint xsi:type="dc:Point" x="445" y="1277" />
1433 <di:waypoint xsi:type="dc:Point" x="670" y="1277" />
1434 <bpmndi:BPMNLabel>
1435 <dc:Bounds x="557.5" y="1257" width="0" height="10" />
1436 </bpmndi:BPMNLabel>
1437 </bpmndi:BPMNEdge>
1438 <bpmndi:BPMNShape id="CallActivity_1totpg4_di" bpmnElement="Task_14l19kv">
1439 <dc:Bounds x="345" y="1237" width="100" height="80" />
1440 </bpmndi:BPMNShape>
1441 </bpmndi:BPMNPlane>
1442 </bpmndi:BPMNDiagram>
1443</bpmn2:definitions>