summaryrefslogtreecommitdiffstats
path: root/adapters/mso-adapter-utils/src/test/resources
diff options
context:
space:
mode:
authorMichal Kabaj <michal.kabaj@nokia.com>2019-01-14 13:56:32 +0100
committerMichal Kabaj <michal.kabaj@nokia.com>2019-01-15 09:45:27 +0100
commit95ac2e00966646914f0c03f1d97cb4a48b6342c7 (patch)
tree2c0f6c02113f4c92aaf0feb75e83e9976cf85c17 /adapters/mso-adapter-utils/src/test/resources
parent2b10e4fab723c069ba255c693a6a0abe8bda8f6c (diff)
MsoTenantUtilsFactoryTest unit tests
-added new test cases for factory class Change-Id: Iddd221d1ff5fa6748657b635bc07b6c795b8b9d8 Issue-ID: SO-1339 Signed-off-by: Michal Kabaj <michal.kabaj@nokia.com>
Diffstat (limited to 'adapters/mso-adapter-utils/src/test/resources')
0 files changed, 0 insertions, 0 deletions
a> 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431
<?xml version="1.0" encoding="UTF-8"?>
<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.4.0" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL BPMN20.xsd">
  <bpmn2:process id="DoCreateServiceInstance" name="DoCreateServiceInstance" isExecutable="true">
    <bpmn2:startEvent id="createSI_startEvent" name="Start Flow">
      <bpmn2:outgoing>SequenceFlow_1</bpmn2:outgoing>
    </bpmn2:startEvent>
    <bpmn2:sequenceFlow id="SequenceFlow_1" name="" sourceRef="createSI_startEvent" targetRef="preProcessRequest_ScriptTask" />
    <bpmn2:scriptTask id="getAAICustomerById_scriptTask" name="Get AAI Customer By globalCustomerId " scriptFormat="groovy">
      <bpmn2:incoming>SequenceFlow_2</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_3</bpmn2:outgoing>
      <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
def dcsi = new DoCreateServiceInstance()
dcsi.getAAICustomerById(execution)]]></bpmn2:script>
    </bpmn2:scriptTask>
    <bpmn2:sequenceFlow id="SequenceFlow_3" name="" sourceRef="getAAICustomerById_scriptTask" targetRef="ExclusiveGateway_09wkav2" />
    <bpmn2:scriptTask id="preProcessRequest_ScriptTask" name="PreProcess Incoming Request" scriptFormat="groovy">
      <bpmn2:incoming>SequenceFlow_1</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_2</bpmn2:outgoing>
      <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
def dcsi = new DoCreateServiceInstance()
dcsi.preProcessRequest(execution)
]]></bpmn2:script>
    </bpmn2:scriptTask>
    <bpmn2:sequenceFlow id="SequenceFlow_4" name="" sourceRef="callGenericGetService" targetRef="ScriptTask_0i8cqdy" />
    <bpmn2:scriptTask id="PreProcessSDNCAssignRequest" name="PreProcess SDNC Assign Request" scriptFormat="groovy">
      <bpmn2:incoming>SequenceFlow_156ih25</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_14</bpmn2:outgoing>
      <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
def dcsi = new DoCreateServiceInstance()
dcsi.preProcessSDNCAssignRequest(execution)]]></bpmn2:script>
    </bpmn2:scriptTask>
    <bpmn2:scriptTask id="PostProcessSDNCAssignRequest" name="Post Process SDNC Assign Request" scriptFormat="groovy">
      <bpmn2:incoming>SequenceFlow_9</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_10</bpmn2:outgoing>
      <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
def dcsi = new DoCreateServiceInstance()
dcsi.postProcessSDNCAssign(execution)]]></bpmn2:script>
    </bpmn2:scriptTask>
    <bpmn2:callActivity id="CallSDNCAdapterServiceTopologyAssign" name="Call SDNC Adapter Service Topology Assign" calledElement="sdncAdapter">
      <bpmn2:extensionElements>
        <camunda:in source="sdncAssignRequest" target="sdncAdapterWorkflowRequest" />
        <camunda:in source="msoRequestId" target="mso-request-id" />
        <camunda:in source="serviceInstanceId" target="mso-service-instance-id" />
        <camunda:out source="WorkflowException" target="WorkflowException" />
        <camunda:out source="sdncAdapterResponse" target="sdncAdapterResponse" />
        <camunda:out source="SDNCA_SuccessIndicator" target="SDNCA_SuccessIndicator" />
      </bpmn2:extensionElements>
      <bpmn2:incoming>SequenceFlow_14</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_9</bpmn2:outgoing>
    </bpmn2:callActivity>
    <bpmn2:endEvent id="EndEvent_3">
      <bpmn2:incoming>SequenceFlow_01q6pl4</bpmn2:incoming>
    </bpmn2:endEvent>
    <bpmn2:sequenceFlow id="SequenceFlow_2" name="" sourceRef="preProcessRequest_ScriptTask" targetRef="getAAICustomerById_scriptTask" />
    <bpmn2:sequenceFlow id="SequenceFlow_14" name="" sourceRef="PreProcessSDNCAssignRequest" targetRef="CallSDNCAdapterServiceTopologyAssign" />
    <bpmn2:sequenceFlow id="SequenceFlow_9" name="" sourceRef="CallSDNCAdapterServiceTopologyAssign" targetRef="PostProcessSDNCAssignRequest" />
    <bpmn2:sequenceFlow id="SequenceFlow_10" name="" sourceRef="PostProcessSDNCAssignRequest" targetRef="CallActivity_1707jgc" />
    <bpmn2:callActivity id="callGenericGetService" name="Call GenericGetService" calledElement="GenericGetService">
      <bpmn2:extensionElements>
        <camunda:in source="serviceInstanceName" target="GENGS_serviceInstanceName" />
        <camunda:in source="globalSubscriberId" target="GENGS_globalCustomerId" />
        <camunda:in sourceExpression="service-instance" target="GENGS_type" />
        <camunda:out source="GENGS_FoundIndicator" target="GENGS_FoundIndicator" />
        <camunda:out source="GENGS_SuccessIndicator" target="GENGS_SuccessIndicator" />
        <camunda:out source="WorkflowException" target="WorkflowException" />
      </bpmn2:extensionElements>
      <bpmn2:incoming>SequenceFlow_11fnnkb</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_4</bpmn2:outgoing>
    </bpmn2:callActivity>
    <bpmn2:callActivity id="callGenericPutService" name="Call Generic Put Service" calledElement="GenericPutService">
      <bpmn2:extensionElements>
        <camunda:in source="globalSubscriberId" target="GENPS_globalSubscriberId" />
        <camunda:in source="serviceInstanceId" target="GENPS_serviceInstanceId" />
        <camunda:in source="subscriptionServiceType" target="GENPS_serviceType" />
        <camunda:in sourceExpression="service-instance" target="GENPS_type" />
        <camunda:in source="serviceInstanceData" target="GENPS_payload" />
        <camunda:out source="GENPS_SuccessIndicator" target="GENPS_SuccessIndicator" />
        <camunda:in source="msoRequestId" target="GENPS_requesId" />
        <camunda:out source="WorkflowException" target="WorkflowException" />
      </bpmn2:extensionElements>
      <bpmn2:incoming>SequenceFlow_1uw2p9a</bpmn2:incoming>
      <bpmn2:incoming>SequenceFlow_1w01tqs</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_129ih1g</bpmn2:outgoing>
    </bpmn2:callActivity>
    <bpmn2:sequenceFlow id="SequenceFlow_129ih1g" sourceRef="callGenericPutService" targetRef="ScriptTask_0q37vn9" />
    <bpmn2:exclusiveGateway id="ExclusiveGateway_09wkav2" name="sdncVersion is 1610 or serviceInstance name is populated?" default="SequenceFlow_1uw2p9a">
      <bpmn2:incoming>SequenceFlow_3</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_11fnnkb</bpmn2:outgoing>
      <bpmn2:outgoing>SequenceFlow_1uw2p9a</bpmn2:outgoing>
    </bpmn2:exclusiveGateway>
    <bpmn2:sequenceFlow id="SequenceFlow_11fnnkb" name="yes" sourceRef="ExclusiveGateway_09wkav2" targetRef="callGenericGetService">
      <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{(execution.getVariable("serviceInstanceName" )  != null && execution.getVariable("serviceInstanceName" )  != "" ) || execution.getVariable("sdncVersion" )   == "1610" }]]></bpmn2:conditionExpression>
    </bpmn2:sequenceFlow>
    <bpmn2:sequenceFlow id="SequenceFlow_1uw2p9a" name="no" sourceRef="ExclusiveGateway_09wkav2" targetRef="callGenericPutService" />
    <bpmn2:subProcess id="SubProcess_06d8lk8" name="Sub-process for Application Errors" triggeredByEvent="true">
      <bpmn2:startEvent id="StartEvent_0yljq9y">
        <bpmn2:outgoing>SequenceFlow_0tgrn11</bpmn2:outgoing>
        <bpmn2:errorEventDefinition />
      </bpmn2:startEvent>
      <bpmn2:endEvent id="EndEvent_117lkk3">
        <bpmn2:incoming>SequenceFlow_1xzgv5k</bpmn2:incoming>
      </bpmn2:endEvent>
      <bpmn2:callActivity id="CallActivity_1srx6p6" name="Call DoCreateServiceInstanceRollback" calledElement="DoCreateServiceInstanceRollback">
        <bpmn2:extensionElements>
          <camunda:in source="msoRequestId" target="mso-request-id" />
          <camunda:in source="rollbackData" target="rollbackData" />
          <camunda:out source="rolledBack" target="rolledBack" />
          <camunda:in source="disableRollback" target="disableRollback" />
          <camunda:out source="rollbackError" target="rollbackErrror" />
        </bpmn2:extensionElements>
        <bpmn2:incoming>SequenceFlow_1lqktwf</bpmn2:incoming>
        <bpmn2:outgoing>SequenceFlow_0eumzpf</bpmn2:outgoing>
      </bpmn2:callActivity>
      <bpmn2:sequenceFlow id="SequenceFlow_0eumzpf" sourceRef="CallActivity_1srx6p6" targetRef="ScriptTask_1p0vyip" />
      <bpmn2:sequenceFlow id="SequenceFlow_0tgrn11" sourceRef="StartEvent_0yljq9y" targetRef="ScriptTask_0ocetux" />
      <bpmn2:scriptTask id="ScriptTask_0ocetux" name="Pre Process Rollback" scriptFormat="groovy">
        <bpmn2:incoming>SequenceFlow_0tgrn11</bpmn2:incoming>
        <bpmn2:outgoing>SequenceFlow_1lqktwf</bpmn2:outgoing>
        <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
def dcsi = new DoCreateServiceInstance()
dcsi.preProcessRollback(execution)
]]></bpmn2:script>
      </bpmn2:scriptTask>
      <bpmn2:sequenceFlow id="SequenceFlow_1lqktwf" sourceRef="ScriptTask_0ocetux" targetRef="CallActivity_1srx6p6" />
      <bpmn2:scriptTask id="ScriptTask_1p0vyip" name="Post Process Rollback" scriptFormat="groovy">
        <bpmn2:incoming>SequenceFlow_0eumzpf</bpmn2:incoming>
        <bpmn2:outgoing>SequenceFlow_1xzgv5k</bpmn2:outgoing>
        <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
def dcsi = new DoCreateServiceInstance()
dcsi.postProcessRollback(execution)
]]></bpmn2:script>
      </bpmn2:scriptTask>
      <bpmn2:sequenceFlow id="SequenceFlow_1xzgv5k" sourceRef="ScriptTask_1p0vyip" targetRef="EndEvent_117lkk3" />
    </bpmn2:subProcess>
    <bpmn2:exclusiveGateway id="ExclusiveGateway_1nk6aol" name="sdncVersion is 1610?" default="SequenceFlow_156ih25">
      <bpmn2:incoming>SequenceFlow_1dd86x8</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_156ih25</bpmn2:outgoing>
      <bpmn2:outgoing>SequenceFlow_00v4npo</bpmn2:outgoing>
    </bpmn2:exclusiveGateway>
    <bpmn2:sequenceFlow id="SequenceFlow_156ih25" name="no" sourceRef="ExclusiveGateway_1nk6aol" targetRef="PreProcessSDNCAssignRequest" />
    <bpmn2:endEvent id="EndEvent_10659gr">
      <bpmn2:incoming>SequenceFlow_00v4npo</bpmn2:incoming>
    </bpmn2:endEvent>
    <bpmn2:sequenceFlow id="SequenceFlow_00v4npo" name="yes" sourceRef="ExclusiveGateway_1nk6aol" targetRef="EndEvent_10659gr">
      <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("sdncVersion" ) == "1610"}]]></bpmn2:conditionExpression>
    </bpmn2:sequenceFlow>
    <bpmn2:scriptTask id="ScriptTask_0i8cqdy" name="Post Process AAI GET" scriptFormat="groovy">
      <bpmn2:incoming>SequenceFlow_4</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_1w01tqs</bpmn2:outgoing>
      <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
def dcsi = new DoCreateServiceInstance()
dcsi.postProcessAAIGET(execution)]]></bpmn2:script>
    </bpmn2:scriptTask>
    <bpmn2:sequenceFlow id="SequenceFlow_1w01tqs" sourceRef="ScriptTask_0i8cqdy" targetRef="callGenericPutService" />
    <bpmn2:scriptTask id="ScriptTask_0q37vn9" name="Post Process AAI PUT" scriptFormat="groovy">
      <bpmn2:incoming>SequenceFlow_129ih1g</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_1dd86x8</bpmn2:outgoing>
      <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
def ddsi = new DoCreateServiceInstance()
ddsi.postProcessAAIPUT(execution)]]></bpmn2:script>
    </bpmn2:scriptTask>
    <bpmn2:sequenceFlow id="SequenceFlow_1dd86x8" sourceRef="ScriptTask_0q37vn9" targetRef="ExclusiveGateway_1nk6aol" />
    <bpmn2:callActivity id="CallActivity_1707jgc" name="Call GenericGetService2" calledElement="GenericGetService">
      <bpmn2:extensionElements>
        <camunda:in source="serviceInstanceId" target="GENGS_serviceInstanceId" />
        <camunda:in sourceExpression="service-instance" target="GENGS_type" />
        <camunda:in source="globalSubscriberId" target="GENGS_globalCustomerId" />
        <camunda:in source="subscriptionServiceType" target="GENGS_serviceType" />
        <camunda:out source="GENGS_FoundIndicator" target="GENGS_FoundIndicator" />
        <camunda:out source="GENGS_SuccessIndicator" target="GENGS_SuccessIndicator" />
        <camunda:out source="WorkflowException" target="WorkflowException" />
        <camunda:out source="GENGS_service" target="GENGS_service" />
      </bpmn2:extensionElements>
      <bpmn2:incoming>SequenceFlow_10</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_0tx5frq</bpmn2:outgoing>
    </bpmn2:callActivity>
    <bpmn2:sequenceFlow id="SequenceFlow_0tx5frq" sourceRef="CallActivity_1707jgc" targetRef="ScriptTask_1tp0fcx" />
    <bpmn2:sequenceFlow id="SequenceFlow_01q6pl4" sourceRef="ScriptTask_1tp0fcx" targetRef="EndEvent_3" />
    <bpmn2:scriptTask id="ScriptTask_1tp0fcx" name="Post Process AAI GET2" scriptFormat="groovy">
      <bpmn2:incoming>SequenceFlow_0tx5frq</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_01q6pl4</bpmn2:outgoing>
      <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
def dcsi = new DoCreateServiceInstance()
dcsi.postProcessAAIGET2(execution)]]></bpmn2:script>
    </bpmn2:scriptTask>
  </bpmn2:process>
  <bpmn2:error id="Error_2" name="MSOWorkflowException" errorCode="MSOWorkflowException" />
  <bpmn2:error id="Error_1" name="java.lang.Exception" errorCode="java.lang.Exception" />
  <bpmndi:BPMNDiagram id="BPMNDiagram_1">
    <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="DoCreateServiceInstance">
      <bpmndi:BPMNShape id="_BPMNShape_StartEvent_47" bpmnElement="createSI_startEvent">
        <dc:Bounds x="152" y="79" width="36" height="36" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="147" y="120" width="48" height="14" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_61" bpmnElement="preProcessRequest_ScriptTask">
        <dc:Bounds x="245" y="57" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_1" bpmnElement="SequenceFlow_1" sourceElement="_BPMNShape_StartEvent_47" targetElement="_BPMNShape_ScriptTask_61">
        <di:waypoint xsi:type="dc:Point" x="188" y="97" />
        <di:waypoint xsi:type="dc:Point" x="245" y="97" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="217" y="82" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_62" bpmnElement="getAAICustomerById_scriptTask">
        <dc:Bounds x="393" y="57" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_6" bpmnElement="SequenceFlow_3" sourceElement="_BPMNShape_ScriptTask_62">
        <di:waypoint xsi:type="dc:Point" x="493" y="97" />
        <di:waypoint xsi:type="dc:Point" x="565" y="97" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="529" y="82" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="_BPMNShape_EndEvent_177" bpmnElement="EndEvent_3">
        <dc:Bounds x="1115" y="1165" width="36" height="36" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1133" y="1206" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_10" bpmnElement="SequenceFlow_4">
        <di:waypoint xsi:type="dc:Point" x="839" y="94" />
        <di:waypoint xsi:type="dc:Point" x="971" y="94" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="905" y="79" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_334" bpmnElement="PreProcessSDNCAssignRequest">
        <dc:Bounds x="972" y="578" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_335" bpmnElement="PostProcessSDNCAssignRequest">
        <dc:Bounds x="972" y="864" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="_BPMNShape_CallActivity_74" bpmnElement="CallSDNCAdapterServiceTopologyAssign">
        <dc:Bounds x="972" y="721" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_3" bpmnElement="SequenceFlow_2" sourceElement="_BPMNShape_ScriptTask_61" targetElement="_BPMNShape_ScriptTask_62">
        <di:waypoint xsi:type="dc:Point" x="345" y="97" />
        <di:waypoint xsi:type="dc:Point" x="393" y="97" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="369" y="82" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_8" bpmnElement="SequenceFlow_14" sourceElement="_BPMNShape_ScriptTask_334" targetElement="_BPMNShape_CallActivity_74">
        <di:waypoint xsi:type="dc:Point" x="1020" y="658" />
        <di:waypoint xsi:type="dc:Point" x="1020" y="692" />
        <di:waypoint xsi:type="dc:Point" x="1020" y="692" />
        <di:waypoint xsi:type="dc:Point" x="1020" y="715" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1035" y="692" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_11" bpmnElement="SequenceFlow_9" sourceElement="_BPMNShape_CallActivity_74" targetElement="_BPMNShape_ScriptTask_335">
        <di:waypoint xsi:type="dc:Point" x="1022" y="801" />
        <di:waypoint xsi:type="dc:Point" x="1022" y="840" />
        <di:waypoint xsi:type="dc:Point" x="1022" y="840" />
        <di:waypoint xsi:type="dc:Point" x="1022" y="864" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1037" y="840" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_12" bpmnElement="SequenceFlow_10" sourceElement="_BPMNShape_ScriptTask_335">
        <di:waypoint xsi:type="dc:Point" x="1024" y="944" />
        <di:waypoint xsi:type="dc:Point" x="1024" y="994" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1039" y="969" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="CallActivity_1md4kyb_di" bpmnElement="callGenericGetService">
        <dc:Bounds x="739" y="57" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="CallActivity_0khp0qc_di" bpmnElement="callGenericPutService">
        <dc:Bounds x="972" y="206" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="SequenceFlow_129ih1g_di" bpmnElement="SequenceFlow_129ih1g">
        <di:waypoint xsi:type="dc:Point" x="1023" y="286" />
        <di:waypoint xsi:type="dc:Point" x="1022" y="336" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1023" y="296" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="ExclusiveGateway_09wkav2_di" bpmnElement="ExclusiveGateway_09wkav2" isMarkerVisible="true">
        <dc:Bounds x="565" y="72" width="50" height="50" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="547" y="7" width="81" height="62" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="SequenceFlow_11fnnkb_di" bpmnElement="SequenceFlow_11fnnkb">
        <di:waypoint xsi:type="dc:Point" x="615" y="97" />
        <di:waypoint xsi:type="dc:Point" x="739" y="97" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="635" y="76" width="18" height="14" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_1uw2p9a_di" bpmnElement="SequenceFlow_1uw2p9a">
        <di:waypoint xsi:type="dc:Point" x="590" y="122" />
        <di:waypoint xsi:type="dc:Point" x="590" y="246" />
        <di:waypoint xsi:type="dc:Point" x="972" y="246" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="594" y="132.89706349694825" width="12" height="14" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="SubProcess_06d8lk8_di" bpmnElement="SubProcess_06d8lk8" isExpanded="true">
        <dc:Bounds x="99" y="531" width="783" height="195" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="StartEvent_0yljq9y_di" bpmnElement="StartEvent_0yljq9y">
        <dc:Bounds x="195" y="608" width="36" height="36" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="213" y="649" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="EndEvent_117lkk3_di" bpmnElement="EndEvent_117lkk3">
        <dc:Bounds x="828" y="608" width="36" height="36" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="846" y="649" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="CallActivity_1srx6p6_di" bpmnElement="CallActivity_1srx6p6">
        <dc:Bounds x="493" y="586" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="SequenceFlow_0eumzpf_di" bpmnElement="SequenceFlow_0eumzpf">
        <di:waypoint xsi:type="dc:Point" x="593" y="626" />
        <di:waypoint xsi:type="dc:Point" x="661" y="626" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="627" y="611" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_0tgrn11_di" bpmnElement="SequenceFlow_0tgrn11">
        <di:waypoint xsi:type="dc:Point" x="231" y="626" />
        <di:waypoint xsi:type="dc:Point" x="330" y="626" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="281" y="611" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="ExclusiveGateway_1nk6aol_di" bpmnElement="ExclusiveGateway_1nk6aol" isMarkerVisible="true">
        <dc:Bounds x="997" y="460" width="50" height="50" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="903" y="472" width="75" height="24" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="SequenceFlow_156ih25_di" bpmnElement="SequenceFlow_156ih25">
        <di:waypoint xsi:type="dc:Point" x="1022" y="510" />
        <di:waypoint xsi:type="dc:Point" x="1022" y="545" />
        <di:waypoint xsi:type="dc:Point" x="1022" y="545" />
        <di:waypoint xsi:type="dc:Point" x="1022" y="575" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1039" y="510.8721806797853" width="12" height="12" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="EndEvent_10659gr_di" bpmnElement="EndEvent_10659gr">
        <dc:Bounds x="1103" y="467" width="36" height="36" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1121" y="508" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="SequenceFlow_00v4npo_di" bpmnElement="SequenceFlow_00v4npo">
        <di:waypoint xsi:type="dc:Point" x="1047" y="485" />
        <di:waypoint xsi:type="dc:Point" x="1103" y="485" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1063" y="461" width="18" height="12" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="ScriptTask_0i8cqdy_di" bpmnElement="ScriptTask_0i8cqdy">
        <dc:Bounds x="971" y="57" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="SequenceFlow_1w01tqs_di" bpmnElement="SequenceFlow_1w01tqs">
        <di:waypoint xsi:type="dc:Point" x="1021" y="137" />
        <di:waypoint xsi:type="dc:Point" x="1021" y="172" />
        <di:waypoint xsi:type="dc:Point" x="1021" y="172" />
        <di:waypoint xsi:type="dc:Point" x="1021" y="206" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1036" y="172" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="ScriptTask_0q37vn9_di" bpmnElement="ScriptTask_0q37vn9">
        <dc:Bounds x="972" y="336" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="SequenceFlow_1dd86x8_di" bpmnElement="SequenceFlow_1dd86x8">
        <di:waypoint xsi:type="dc:Point" x="1022" y="416" />
        <di:waypoint xsi:type="dc:Point" x="1022" y="460" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1037" y="438" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="ScriptTask_0ocetux_di" bpmnElement="ScriptTask_0ocetux">
        <dc:Bounds x="330" y="586" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="SequenceFlow_1lqktwf_di" bpmnElement="SequenceFlow_1lqktwf">
        <di:waypoint xsi:type="dc:Point" x="430" y="626" />
        <di:waypoint xsi:type="dc:Point" x="493" y="626" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="462" y="611" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="ScriptTask_1p0vyip_di" bpmnElement="ScriptTask_1p0vyip">
        <dc:Bounds x="661" y="586" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="SequenceFlow_1xzgv5k_di" bpmnElement="SequenceFlow_1xzgv5k">
        <di:waypoint xsi:type="dc:Point" x="761" y="626" />
        <di:waypoint xsi:type="dc:Point" x="793" y="626" />
        <di:waypoint xsi:type="dc:Point" x="793" y="626" />
        <di:waypoint xsi:type="dc:Point" x="828" y="626" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="808" y="626" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="CallActivity_1707jgc_di" bpmnElement="CallActivity_1707jgc">
        <dc:Bounds x="972" y="994" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="SequenceFlow_0tx5frq_di" bpmnElement="SequenceFlow_0tx5frq">
        <di:waypoint xsi:type="dc:Point" x="1022" y="1074" />
        <di:waypoint xsi:type="dc:Point" x="1022" y="1143" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1037" y="1108.5" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_01q6pl4_di" bpmnElement="SequenceFlow_01q6pl4">
        <di:waypoint xsi:type="dc:Point" x="1072" y="1183" />
        <di:waypoint xsi:type="dc:Point" x="1115" y="1183" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1094" y="1168" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="ScriptTask_1tp0fcx_di" bpmnElement="ScriptTask_1tp0fcx">
        <dc:Bounds x="972" y="1143" width="100" height="80" />
      </bpmndi:BPMNShape>
    </bpmndi:BPMNPlane>
  </bpmndi:BPMNDiagram>
</bpmn2:definitions>