summaryrefslogtreecommitdiffstats
path: root/releases/2.4.2.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'releases/2.4.2.yaml')
0 files changed, 0 insertions, 0 deletions
='n18' href='#n18'>18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 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
<?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="_DkzPAHB4EeaJwpcpVN5gXw" targetNamespace="http://camunda.org/schema/1.0/bpmn" exporter="Camunda Modeler" exporterVersion="1.8.2" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL BPMN20.xsd">
  <bpmn2:process id="CreateVnfInfra" name="CreateVnfInfra" isExecutable="true">
    <bpmn2:startEvent id="StartEvent_1">
      <bpmn2:outgoing>SequenceFlow_1</bpmn2:outgoing>
    </bpmn2:startEvent>
    <bpmn2:sequenceFlow id="SequenceFlow_1" name="" sourceRef="StartEvent_1" targetRef="initialization" />
    <bpmn2:scriptTask id="initialization" name="Initialization" scriptFormat="groovy">
      <bpmn2:incoming>SequenceFlow_1</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_2</bpmn2:outgoing>
      <bpmn2:script><![CDATA[import org.onap.so.bpmn.infrastructure.scripts.*
CreateVnfInfra createVnf = new CreateVnfInfra()
createVnf.preProcessRequest(execution)]]></bpmn2:script>
    </bpmn2:scriptTask>
    <bpmn2:sequenceFlow id="SequenceFlow_2" name="" sourceRef="initialization" targetRef="sendResponse" />
    <bpmn2:scriptTask id="sendResponse" name="Send Sync Response" scriptFormat="groovy">
      <bpmn2:incoming>SequenceFlow_2</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_3</bpmn2:outgoing>
      <bpmn2:script><![CDATA[import org.onap.so.bpmn.infrastructure.scripts.*
CreateVnfInfra createVnf = new CreateVnfInfra()
createVnf.sendSyncResponse(execution)]]></bpmn2:script>
    </bpmn2:scriptTask>
    <bpmn2:sequenceFlow id="SequenceFlow_3" name="" sourceRef="sendResponse" targetRef="QueryCatalogDB" />
    <bpmn2:callActivity id="CreateVNF" name="Create VNF" calledElement="DoCreateVnf">
      <bpmn2:extensionElements>
        <camunda:in source="CREVI_requestId" target="msoRequestId" />
        <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" />
        <camunda:in source="CREVI_serviceInstanceId" target="serviceInstanceId" />
        <camunda:in source="CREVI_suppressRollback" target="disableRollback" />
        <camunda:in source="CREVI_vnfModelInfo" target="vnfModelInfo" />
        <camunda:in source="CREVI_vnfType" target="vnfType" />
        <camunda:in source="CREVI_vnfName" target="vnfName" />
        <camunda:in source="CREVI_vnfId" target="vnfId" />
        <camunda:in source="CREVI_serviceId" target="productFamilyId" />
        <camunda:in source="CREVI_vnfInputParameters" target="vnfInputParameters" />
        <camunda:out source="vnfId" target="CREVI_vnfId" />
        <camunda:out source="vnfOutputParameters" target="CREVI_vnfOutputParameters" />
        <camunda:out source="WorkflowException" target="WorkflowException" />
        <camunda:in source="CREVI_lcpCloudRegionId" target="lcpCloudRegionId" />
        <camunda:in source="CREVI_cloudOwner" target="cloudOwner" />
        <camunda:in source="CREVI_tenantId" target="tenandId" />
        <camunda:in source="CREVI_vnfResourceDecomposition" target="vnfResourceDecomposition" />
      </bpmn2:extensionElements>
      <bpmn2:incoming>SequenceFlow_0ed0uiq</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_0w0m5fr</bpmn2:outgoing>
    </bpmn2:callActivity>
    <bpmn2:subProcess id="javaErrorHandlingSubProcess" name="Java Exception Handling Sub Process" triggeredByEvent="true">
      <bpmn2:scriptTask id="processJavaError" name="Process Error" scriptFormat="groovy">
        <bpmn2:incoming>SequenceFlow_8</bpmn2:incoming>
        <bpmn2:outgoing>SequenceFlow_9</bpmn2:outgoing>
        <bpmn2:script><![CDATA[import org.onap.so.bpmn.common.scripts.utils.*
ExceptionUtil exceptionUtil = new ExceptionUtil()
exceptionUtil.processJavaException(execution)]]></bpmn2:script>
      </bpmn2:scriptTask>
      <bpmn2:sequenceFlow id="SequenceFlow_9" name="" sourceRef="processJavaError" targetRef="EndEvent_4" />
      <bpmn2:endEvent id="EndEvent_4">
        <bpmn2:incoming>SequenceFlow_9</bpmn2:incoming>
      </bpmn2:endEvent>
      <bpmn2:startEvent id="StartEvent_2">
        <bpmn2:outgoing>SequenceFlow_8</bpmn2:outgoing>
        <bpmn2:errorEventDefinition id="ErrorEventDefinition_3" errorRef="Error_1" />
      </bpmn2:startEvent>
      <bpmn2:sequenceFlow id="SequenceFlow_8" name="" sourceRef="StartEvent_2" targetRef="processJavaError" />
    </bpmn2:subProcess>
    <bpmn2:subProcess id="bpmnErrorHandlingSubProcess" name="Error Handling Sub Process" triggeredByEvent="true">
      <bpmn2:callActivity id="callFalloutHandler" name="Call&#10;&#10;FalloutHandler" calledElement="FalloutHandler">
        <bpmn2:extensionElements>
          <camunda:in source="CREVI_falloutRequest" target="FalloutHandlerRequest" />
          <camunda:in source="CREVI_requestId" target="requestId" />
          <camunda:in source="CREVI_serviceInstanceId" target="serviceInstanceId" />
        </bpmn2:extensionElements>
        <bpmn2:incoming>SequenceFlow_13</bpmn2:incoming>
        <bpmn2:outgoing>SequenceFlow_14</bpmn2:outgoing>
      </bpmn2:callActivity>
      <bpmn2:sequenceFlow id="SequenceFlow_14" name="" sourceRef="callFalloutHandler" targetRef="EndEvent_5" />
      <bpmn2:scriptTask id="processError" name="Process Error" scriptFormat="groovy">
        <bpmn2:incoming>SequenceFlow_15</bpmn2:incoming>
        <bpmn2:outgoing>SequenceFlow_13</bpmn2:outgoing>
        <bpmn2:script><![CDATA[import org.onap.so.bpmn.infrastructure.scripts.*

CreateVnfInfra createVnf = new CreateVnfInfra()
createVnf.prepareFalloutRequest(execution)]]></bpmn2:script>
      </bpmn2:scriptTask>
      <bpmn2:sequenceFlow id="SequenceFlow_13" name="" sourceRef="processError" targetRef="callFalloutHandler" />
      <bpmn2:endEvent id="EndEvent_5">
        <bpmn2:incoming>SequenceFlow_14</bpmn2:incoming>
        <bpmn2:terminateEventDefinition id="_TerminateEventDefinition_34" />
      </bpmn2:endEvent>
      <bpmn2:scriptTask id="sendErrorResponse" name="Send Error Response" scriptFormat="groovy">
        <bpmn2:incoming>SequenceFlow_12</bpmn2:incoming>
        <bpmn2:outgoing>SequenceFlow_15</bpmn2:outgoing>
        <bpmn2:script><![CDATA[import org.onap.so.bpmn.infrastructure.scripts.*
CreateVnfInfra createVnf = new CreateVnfInfra()
createVnf.sendErrorResponse(execution)]]></bpmn2:script>
      </bpmn2:scriptTask>
      <bpmn2:sequenceFlow id="SequenceFlow_15" name="" sourceRef="sendErrorResponse" targetRef="processError" />
      <bpmn2:startEvent id="StartEvent_3">
        <bpmn2:outgoing>SequenceFlow_12</bpmn2:outgoing>
        <bpmn2:errorEventDefinition id="ErrorEventDefinition_4" />
      </bpmn2:startEvent>
      <bpmn2:sequenceFlow id="SequenceFlow_12" name="" sourceRef="StartEvent_3" targetRef="sendErrorResponse" />
    </bpmn2:subProcess>
    <bpmn2:scriptTask id="postProcess" name="Prepare Completion Handler" scriptFormat="groovy">
      <bpmn2:incoming>SequenceFlow_01mjjk3</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_16</bpmn2:outgoing>
      <bpmn2:script><![CDATA[import org.onap.so.bpmn.infrastructure.scripts.*
CreateVnfInfra createVnf = new CreateVnfInfra()
createVnf.prepareCompletionHandlerRequest(execution)]]></bpmn2:script>
    </bpmn2:scriptTask>
    <bpmn2:sequenceFlow id="SequenceFlow_16" name="" sourceRef="postProcess" targetRef="callCompletionHandler" />
    <bpmn2:endEvent id="EndEvent_3">
      <bpmn2:incoming>SequenceFlow_17</bpmn2:incoming>
      <bpmn2:terminateEventDefinition id="_TerminateEventDefinition_35" />
    </bpmn2:endEvent>
    <bpmn2:callActivity id="callCompletionHandler" name="Completion&#10;&#10;Handler" calledElement="CompleteMsoProcess">
      <bpmn2:extensionElements>
        <camunda:in source="CREVI_completionHandlerRequest" target="CompleteMsoProcessRequest" />
        <camunda:in source="CREVI_requestId" target="mso-request-id" />
        <camunda:in source="CREVI_serviceInstanceId" target="mso-service-instance-id" />
        <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" />
      </bpmn2:extensionElements>
      <bpmn2:incoming>SequenceFlow_16</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_17</bpmn2:outgoing>
    </bpmn2:callActivity>
    <bpmn2:sequenceFlow id="SequenceFlow_17" name="" sourceRef="callCompletionHandler" targetRef="EndEvent_3" />
    <bpmn2:sequenceFlow id="SequenceFlow_0ed0uiq" sourceRef="QueryCatalogDB" targetRef="CreateVNF" />
    <bpmn2:scriptTask id="QueryCatalogDB" name="Query Catalog DB" scriptFormat="groovy">
      <bpmn2:incoming>SequenceFlow_3</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_0ed0uiq</bpmn2:outgoing>
      <bpmn2:script><![CDATA[import org.onap.so.bpmn.infrastructure.scripts.*
CreateVnfInfra createVnf = new CreateVnfInfra()
createVnf.queryCatalogDB(execution)]]></bpmn2:script>
    </bpmn2:scriptTask>
    <bpmn2:sequenceFlow id="SequenceFlow_0w0m5fr" sourceRef="CreateVNF" targetRef="Task_1gmhhag" />
    <bpmn2:sequenceFlow id="SequenceFlow_0s4i7px" sourceRef="Task_1gmhhag" targetRef="Task_1307onz" />
    <bpmn2:sequenceFlow id="SequenceFlow_01mjjk3" sourceRef="Task_1307onz" targetRef="postProcess" />
    <bpmn2:scriptTask id="Task_1gmhhag" name="Create Platform" scriptFormat="groovy">
      <bpmn2:incoming>SequenceFlow_0w0m5fr</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_0s4i7px</bpmn2:outgoing>
      <bpmn2:script><![CDATA[import org.onap.so.bpmn.infrastructure.scripts.*
CreateVnfInfra createVnf = new CreateVnfInfra()
createVnf.createPlatform(execution)]]></bpmn2:script>
    </bpmn2:scriptTask>
    <bpmn2:scriptTask id="Task_1307onz" name="Create Line-of-Business" scriptFormat="groovy">
      <bpmn2:incoming>SequenceFlow_0s4i7px</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_01mjjk3</bpmn2:outgoing>
      <bpmn2:script><![CDATA[import org.onap.so.bpmn.infrastructure.scripts.*
CreateVnfInfra createVnf = new CreateVnfInfra()
createVnf.createLineOfBusiness(execution)]]></bpmn2:script>
    </bpmn2:scriptTask>
  </bpmn2:process>
  <bpmn2:error id="Error_1" name="Java Lang Exception" errorCode="java.lang.Exception" />
  <bpmn2:error id="Error_2" name="MSO Workflow Exception" errorCode="MSOWorkflowException" />
  <bpmndi:BPMNDiagram id="BPMNDiagram_1">
    <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="CreateVnfInfra">
      <bpmndi:BPMNShape id="_BPMNShape_StartEvent_68" bpmnElement="StartEvent_1">
        <dc:Bounds x="96" y="222" width="36" height="36" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="114" y="263" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_285" bpmnElement="initialization">
        <dc:Bounds x="216" y="200" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_1" bpmnElement="SequenceFlow_1" sourceElement="_BPMNShape_StartEvent_68" targetElement="_BPMNShape_ScriptTask_285">
        <di:waypoint xsi:type="dc:Point" x="132" y="240" />
        <di:waypoint xsi:type="dc:Point" x="216" y="240" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="165" y="240" width="6" height="6" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_286" bpmnElement="sendResponse">
        <dc:Bounds x="341" y="200" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_2" bpmnElement="SequenceFlow_2" sourceElement="_BPMNShape_ScriptTask_285" targetElement="_BPMNShape_ScriptTask_286">
        <di:waypoint xsi:type="dc:Point" x="316" y="240" />
        <di:waypoint xsi:type="dc:Point" x="341" y="240" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="329" y="225" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="_BPMNShape_CallActivity_59" bpmnElement="CreateVNF">
        <dc:Bounds x="618" y="200" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_3" bpmnElement="SequenceFlow_3" sourceElement="_BPMNShape_ScriptTask_286" targetElement="_BPMNShape_CallActivity_59">
        <di:waypoint xsi:type="dc:Point" x="441" y="240" />
        <di:waypoint xsi:type="dc:Point" x="478" y="240" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="460" y="225" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="_BPMNShape_EndEvent_228" bpmnElement="EndEvent_3">
        <dc:Bounds x="1340" y="222" width="36" height="36" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1313" y="263" width="90" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="_BPMNShape_SubProcess_32" bpmnElement="javaErrorHandlingSubProcess" isExpanded="true">
        <dc:Bounds x="253" y="696" width="313" height="169" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="_BPMNShape_StartEvent_76" bpmnElement="StartEvent_2">
        <dc:Bounds x="277" y="763" width="36" height="36" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="295" y="804" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_308" bpmnElement="processJavaError">
        <dc:Bounds x="360" y="741" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="_BPMNShape_EndEvent_234" bpmnElement="EndEvent_4">
        <dc:Bounds x="505" y="763" width="36" height="36" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="523" y="804" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_14" bpmnElement="SequenceFlow_8" sourceElement="_BPMNShape_StartEvent_76" targetElement="_BPMNShape_ScriptTask_308">
        <di:waypoint xsi:type="dc:Point" x="313" y="781" />
        <di:waypoint xsi:type="dc:Point" x="360" y="781" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="331" y="781" width="6" height="6" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_15" bpmnElement="SequenceFlow_9" sourceElement="_BPMNShape_ScriptTask_308" targetElement="_BPMNShape_EndEvent_234">
        <di:waypoint xsi:type="dc:Point" x="460" y="781" />
        <di:waypoint xsi:type="dc:Point" x="505" y="781" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="477" y="781" width="6" height="6" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="_BPMNShape_SubProcess_33" bpmnElement="bpmnErrorHandlingSubProcess" isExpanded="true">
        <dc:Bounds x="109" y="433" width="601" height="232" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="_BPMNShape_StartEvent_77" bpmnElement="StartEvent_3">
        <dc:Bounds x="133" y="532" width="36" height="36" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="151" y="573" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="_BPMNShape_EndEvent_235" bpmnElement="EndEvent_5">
        <dc:Bounds x="649" y="532" width="36" height="36" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="667" y="573" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="_BPMNShape_CallActivity_62" bpmnElement="callFalloutHandler">
        <dc:Bounds x="493" y="510" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_309" bpmnElement="processError">
        <dc:Bounds x="361" y="510" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_16" bpmnElement="SequenceFlow_12" sourceElement="_BPMNShape_StartEvent_77" targetElement="_BPMNShape_ScriptTask_312">
        <di:waypoint xsi:type="dc:Point" x="169" y="550" />
        <di:waypoint xsi:type="dc:Point" x="229" y="550" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="172" y="550" width="6" height="6" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_17" bpmnElement="SequenceFlow_13" sourceElement="_BPMNShape_ScriptTask_309" targetElement="_BPMNShape_CallActivity_62">
        <di:waypoint xsi:type="dc:Point" x="461" y="550" />
        <di:waypoint xsi:type="dc:Point" x="493" y="550" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="486" y="550" width="6" height="6" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_18" bpmnElement="SequenceFlow_14" sourceElement="_BPMNShape_CallActivity_62" targetElement="_BPMNShape_EndEvent_235">
        <di:waypoint xsi:type="dc:Point" x="593" y="550" />
        <di:waypoint xsi:type="dc:Point" x="649" y="550" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="618" y="550" width="6" height="6" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_312" bpmnElement="sendErrorResponse">
        <dc:Bounds x="229" y="510" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_19" bpmnElement="SequenceFlow_15" sourceElement="_BPMNShape_ScriptTask_312" targetElement="_BPMNShape_ScriptTask_309">
        <di:waypoint xsi:type="dc:Point" x="329" y="550" />
        <di:waypoint xsi:type="dc:Point" x="361" y="550" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="342" y="550" width="6" height="6" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_325" bpmnElement="postProcess">
        <dc:Bounds x="1042" y="200" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_20" bpmnElement="SequenceFlow_16" sourceElement="_BPMNShape_ScriptTask_325" targetElement="_BPMNShape_CallActivity_69">
        <di:waypoint xsi:type="dc:Point" x="1142" y="240" />
        <di:waypoint xsi:type="dc:Point" x="1192" y="240" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1122" y="225" width="90" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="_BPMNShape_CallActivity_69" bpmnElement="callCompletionHandler">
        <dc:Bounds x="1192" y="200" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_21" bpmnElement="SequenceFlow_17" sourceElement="_BPMNShape_CallActivity_69" targetElement="_BPMNShape_EndEvent_228">
        <di:waypoint xsi:type="dc:Point" x="1292" y="240" />
        <di:waypoint xsi:type="dc:Point" x="1340" y="240" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1271" y="225" width="90" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_0ed0uiq_di" bpmnElement="SequenceFlow_0ed0uiq">
        <di:waypoint xsi:type="dc:Point" x="578" y="240" />
        <di:waypoint xsi:type="dc:Point" x="618" y="240" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="598" y="225" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="ScriptTask_0z4xe39_di" bpmnElement="QueryCatalogDB">
        <dc:Bounds x="478" y="200" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="SequenceFlow_0w0m5fr_di" bpmnElement="SequenceFlow_0w0m5fr">
        <di:waypoint xsi:type="dc:Point" x="718" y="240" />
        <di:waypoint xsi:type="dc:Point" x="757" y="240" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="737.5" y="219" width="0" height="12" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_0s4i7px_di" bpmnElement="SequenceFlow_0s4i7px">
        <di:waypoint xsi:type="dc:Point" x="857" y="240" />
        <di:waypoint xsi:type="dc:Point" x="889" y="240" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="873" y="219" width="0" height="12" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_01mjjk3_di" bpmnElement="SequenceFlow_01mjjk3">
        <di:waypoint xsi:type="dc:Point" x="989" y="240" />
        <di:waypoint xsi:type="dc:Point" x="1042" y="240" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1015.5" y="219" width="0" height="12" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="ScriptTask_1wah48v_di" bpmnElement="Task_1gmhhag">
        <dc:Bounds x="757" y="200" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="ScriptTask_0fy16oq_di" bpmnElement="Task_1307onz">
        <dc:Bounds x="889" y="200" width="100" height="80" />
      </bpmndi:BPMNShape>
    </bpmndi:BPMNPlane>
  </bpmndi:BPMNDiagram>
</bpmn2:definitions>