<?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://activiti.org/bpmn" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL BPMN20.xsd" id="_l2hJ8CccEeW3d--PaFJMbg" exporter="camunda modeler" exporterVersion="2.7.0" targetNamespace="http://activiti.org/bpmn"> <bpmn2:process id="sdncAdapter" name="SDNC Adapter" isExecutable="true"> <bpmn2:exclusiveGateway id="isResponseOK" name="is Response Ok?" default="badSynchronousResponse"> <bpmn2:incoming>SequenceFlow_15</bpmn2:incoming> <bpmn2:outgoing>badSynchronousResponse</bpmn2:outgoing> <bpmn2:outgoing>goodSynchronousResponse</bpmn2:outgoing> </bpmn2:exclusiveGateway> <bpmn2:sequenceFlow id="badSynchronousResponse" name="Bad synchronous response" sourceRef="isResponseOK" targetRef="setBadResponse"/> <bpmn2:sequenceFlow id="goodSynchronousResponse" name="Good synchronous response" sourceRef="isResponseOK" targetRef="resetCallbackRequest"> <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("SDNCA_ResponseCode")=='200'}]]></bpmn2:conditionExpression> </bpmn2:sequenceFlow> <bpmn2:scriptTask id="setBadResponse" name="Set Bad Response
Exception" scriptFormat="groovy"> <bpmn2:incoming>badSynchronousResponse</bpmn2:incoming> <bpmn2:outgoing>Exception</bpmn2:outgoing> <bpmn2:script><![CDATA[import com.att.bpm.scripts.* int responseCode = execution.getVariable("SDNCA_ResponseCode") ExceptionUtil exceptionUtil = new ExceptionUtil() exceptionUtil.buildWorkflowException(execution, 7000, "Could not communicate with the SDNC Adapter" )]]></bpmn2:script> </bpmn2:scriptTask> <bpmn2:sequenceFlow id="Exception" name="Exception" sourceRef="setBadResponse" targetRef="badResponseEndFlow"/> <bpmn2:serviceTask id="invokeSDNCAdapter" camunda:class="" name="Invoke SDNC Adapter"> <bpmn2:extensionElements> <camunda:connector> <camunda:connectorId>soap-http-connector</camunda:connectorId> <camunda:inputOutput> <camunda:inputParameter name="url">${URN_mso_adapters_sdnc_endpoint}</camunda:inputParameter> <camunda:inputParameter name="method">POST</camunda:inputParameter> <camunda:inputParameter name="headers"> <camunda:map> <camunda:entry key="content-type">application/soap+xml</camunda:entry> <camunda:entry key="Authorization">#{BasicAuthHeaderValue}</camunda:entry> </camunda:map> </camunda:inputParameter> <camunda:inputParameter name="payload">${sdncAdapterRequest}</camunda:inputParameter> <camunda:outputParameter name="sdncAdapterWorkflowResponse">${response}</camunda:outputParameter> <camunda:outputParameter name="SDNCA_ResponseCode">${statusCode}</camunda:outputParameter> </camunda:inputOutput> </camunda:connector> </bpmn2:extensionElements> <bpmn2:incoming>SequenceFlow_8</bpmn2:incoming> <bpmn2:outgoing>SequenceFlow_15</bpmn2:outgoing> </bpmn2:serviceTask> <bpmn2:sequenceFlow id="SequenceFlow_15" sourceRef="invokeSDNCAdapter" targetRef="isResponseOK"/> <bpmn2:endEvent id="badResponseEndFlow" name="Bad Response End Flow"> <bpmn2:incoming>Exception</bpmn2:incoming> <bpmn2:errorEventDefinition id="_ErrorEventDefinition_77" errorRef="Error_3"/> </bpmn2:endEvent> <bpmn2:startEvent id="SDNCAdapter_Start" name="Incoming Message"> <bpmn2:outgoing>SequenceFlow_1</bpmn2:outgoing> <bpmn2:messageEventDefinition id="_MessageEventDefinition_3" messageRef="Message_1"/> </bpmn2:startEvent> <bpmn2:sequenceFlow id="SequenceFlow_1" sourceRef="SDNCAdapter_Start" targetRef="processMessage"/> <bpmn2:scriptTask id="processMessage" name="Process message" scriptFormat="groovy"> <bpmn2:extensionElements> <camunda:inputOutput> <camunda:inputParameter name="ScriptObject"> <camunda:map> <camunda:entry key="MethodName">massageSDNCRequestScript</camunda:entry> <camunda:entry key="Params"/> </camunda:map> </camunda:inputParameter> </camunda:inputOutput> </bpmn2:extensionElements> <bpmn2:incoming>SequenceFlow_1</bpmn2:incoming> <bpmn2:outgoing>SequenceFlow_8</bpmn2:outgoing> <bpmn2:script><![CDATA[import com.att.bpm.scripts.* def sdnc= new SDNCAdapter() sdnc.preProcessRequest(execution) ]]></bpmn2:script> </bpmn2:scriptTask> <bpmn2:sequenceFlow id="SequenceFlow_8" sourceRef="processMessage" targetRef="invokeSDNCAdapter"/> <bpmn2:exclusiveGateway id="timeOutCheck"> <bpmn2:incoming>SequenceFlow_9</bpmn2:incoming> <bpmn2:incoming>timeOut</bpmn2:incoming> <bpmn2:outgoing>SequenceFlow_29</bpmn2:outgoing> </bpmn2:exclusiveGateway> <bpmn2:scriptTask id="returnWorkflowResult" name="Return workflow result" scriptFormat="groovy"> <bpmn2:incoming>SequenceFlow_29</bpmn2:incoming> <bpmn2:outgoing>SequenceFlow_14</bpmn2:outgoing> <bpmn2:script><![CDATA[import com.att.bpm.scripts.* def sdnc= new SDNCAdapter() sdnc.postProcessResponse(execution) ]]></bpmn2:script> </bpmn2:scriptTask> <bpmn2:sequenceFlow id="SequenceFlow_14" sourceRef="returnWorkflowResult" targetRef="timeoutError"/> <bpmn2:exclusiveGateway id="timeoutError" name="Did Timeout occur?" default="noTimeoutError"> <bpmn2:incoming>SequenceFlow_14</bpmn2:incoming> <bpmn2:outgoing>noTimeoutError</bpmn2:outgoing> <bpmn2:outgoing>SequenceFlow_19</bpmn2:outgoing> </bpmn2:exclusiveGateway> <bpmn2:sequenceFlow id="noTimeoutError" name="No Timeout" sourceRef="timeoutError" targetRef="ExclusiveGateway_1"/> <bpmn2:sequenceFlow id="SequenceFlow_19" name="Timeout" sourceRef="timeoutError" targetRef="setTimeoutEx"> <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("asynchronousResponseTimeout")==true}]]></bpmn2:conditionExpression> </bpmn2:sequenceFlow> <bpmn2:subProcess id="SubProcess" name="Wait for asynchronous message"> <bpmn2:incoming>SequenceFlow_2</bpmn2:incoming> <bpmn2:outgoing>SequenceFlow_9</bpmn2:outgoing> <bpmn2:endEvent id="eEndEventSubprocess" name="End Event Subprocess"> <bpmn2:incoming>SequenceFlow_16</bpmn2:incoming> <bpmn2:terminateEventDefinition id="_TerminateEventDefinition_2"/> </bpmn2:endEvent> <bpmn2:startEvent id="StartEvent" name="Start Event"> <bpmn2:outgoing>SequenceFlow_18</bpmn2:outgoing> </bpmn2:startEvent> <bpmn2:sequenceFlow id="SequenceFlow_18" sourceRef="StartEvent" targetRef="IntermediateCatchEvent"/> <bpmn2:intermediateCatchEvent id="IntermediateCatchEvent" name="Catch Event"> <bpmn2:incoming>SequenceFlow_18</bpmn2:incoming> <bpmn2:outgoing>SequenceFlow_16</bpmn2:outgoing> <bpmn2:messageEventDefinition id="MessageEventDefinition_2" messageRef="Message_2"/> </bpmn2:intermediateCatchEvent> <bpmn2:sequenceFlow id="SequenceFlow_16" sourceRef="IntermediateCatchEvent" targetRef="eEndEventSubprocess"/> </bpmn2:subProcess> <bpmn2:sequenceFlow id="SequenceFlow_9" sourceRef="SubProcess" targetRef="timeOutCheck"/> <bpmn2:boundaryEvent id="BoundaryEvent_1" name="Boundary Event" attachedToRef="SubProcess"> <bpmn2:outgoing>timeOut</bpmn2:outgoing> <bpmn2:timerEventDefinition id="TimerEventDefinition_1"> <bpmn2:timeDuration xsi:type="bpmn2:tFormalExpression">${sdncTimeoutValue}</bpmn2:timeDuration> </bpmn2:timerEventDefinition> </bpmn2:boundaryEvent> <bpmn2:sequenceFlow id="timeOut" name="Timed out" sourceRef="BoundaryEvent_1" targetRef="timeOutCheck"/> <bpmn2:scriptTask id="setTimeoutEx" name="Set Timeout
Exception" scriptFormat="groovy"> <bpmn2:incoming>SequenceFlow_19</bpmn2:incoming> <bpmn2:outgoing>Error</bpmn2:outgoing> <bpmn2:script><![CDATA[import com.att.bpm.scripts.* ExceptionUtil exceptionUtil = new ExceptionUtil() exceptionUtil.buildWorkflowException(execution, 500, "SDNC Callback Timeout Error" ) ]]></bpmn2:script> </bpmn2:scriptTask> <bpmn2:sequenceFlow id="Error" name="Error" sourceRef="setTimeoutEx" targetRef="endEventException"/> <bpmn2:endEvent id="endEventException" name="Timeout Exception"> <bpmn2:incoming>Error</bpmn2:incoming> </bpmn2:endEvent> <bpmn2:sequenceFlow id="SequenceFlow_29" name="" sourceRef="timeOutCheck" targetRef="returnWorkflowResult"/> <bpmn2:scriptTask id="resetCallbackRequest" name="Reset callback request and set timer value" scriptFormat="groovy"> <bpmn2:incoming>goodSynchronousResponse</bpmn2:incoming> <bpmn2:incoming>SequenceFlow_26</bpmn2:incoming> <bpmn2:outgoing>SequenceFlow_2</bpmn2:outgoing> <bpmn2:script><![CDATA[import com.att.bpm.scripts.* def sdnc= new SDNCAdapter() sdnc.resetCallbackRequest(execution)]]></bpmn2:script> </bpmn2:scriptTask> <bpmn2:sequenceFlow id="SequenceFlow_2" name="" sourceRef="resetCallbackRequest" targetRef="SubProcess"/> <bpmn2:exclusiveGateway id="ExclusiveGateway_1" name="Check final indicator" default="Done"> <bpmn2:incoming>noTimeoutError</bpmn2:incoming> <bpmn2:outgoing>Done</bpmn2:outgoing> <bpmn2:outgoing>SequenceFlow_30</bpmn2:outgoing> </bpmn2:exclusiveGateway> <bpmn2:sequenceFlow id="Done" name="Done" sourceRef="ExclusiveGateway_1" targetRef="toggleSuccessIndicator"/> <bpmn2:sequenceFlow id="SequenceFlow_30" name="Not Done" sourceRef="ExclusiveGateway_1" targetRef="ParallelGateway_3"> <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("continueListening")==true}]]></bpmn2:conditionExpression> </bpmn2:sequenceFlow> <bpmn2:scriptTask id="toggleSuccessIndicator" name="Toggle Success Indicator" scriptFormat="groovy"> <bpmn2:incoming>Done</bpmn2:incoming> <bpmn2:outgoing>SequenceFlow_17</bpmn2:outgoing> <bpmn2:script><![CDATA[import com.att.bpm.scripts.* def sdnc= new SDNCAdapter() sdnc.toggleSuccessIndicator(execution)]]></bpmn2:script> </bpmn2:scriptTask> <bpmn2:sequenceFlow id="SequenceFlow_17" name="" sourceRef="toggleSuccessIndicator" targetRef="endEventFlow"/> <bpmn2:endEvent id="endEventFlow" name="End Event Flow"> <bpmn2:extensionElements> <camunda:connector> <camunda:inputOutput> <camunda:outputParameter name="sdncAdapterResponse">${sdncAdapterWorkflowResponse}</camunda:outputParameter> </camunda:inputOutput> </camunda:connector> </bpmn2:extensionElements> <bpmn2:incoming>SequenceFlow_17</bpmn2:incoming> <bpmn2:messageEventDefinition id="_MessageEventDefinition_6"/> </bpmn2:endEvent> <bpmn2:parallelGateway id="ParallelGateway_3"> <bpmn2:incoming>SequenceFlow_30</bpmn2:incoming> <bpmn2:outgoing>SequenceFlow_21</bpmn2:outgoing> <bpmn2:outgoing>SequenceFlow_26</bpmn2:outgoing> </bpmn2:parallelGateway> <bpmn2:sequenceFlow id="SequenceFlow_21" name="" sourceRef="ParallelGateway_3" targetRef="toggleSuccess"/> <bpmn2:sequenceFlow id="SequenceFlow_26" name="Continue listening for asynchronous message" sourceRef="ParallelGateway_3" targetRef="resetCallbackRequest"/> <bpmn2:subProcess id="errorHandlingSubProcess" name="Error Handling Sub Process" triggeredByEvent="true"> <bpmn2:startEvent id="catchErrors" name="Catch"> <bpmn2:outgoing>SequenceFlow_22</bpmn2:outgoing> <bpmn2:errorEventDefinition id="_ErrorEventDefinition_78" errorRef="Error_3"/> </bpmn2:startEvent> <bpmn2:sequenceFlow id="SequenceFlow_22" name="" sourceRef="catchErrors" targetRef="assignError"/> <bpmn2:scriptTask id="assignError" name="Assign Error" scriptFormat="groovy"> <bpmn2:incoming>SequenceFlow_22</bpmn2:incoming> <bpmn2:outgoing>SequenceFlow_27</bpmn2:outgoing> <bpmn2:script><![CDATA[import com.att.bpm.scripts.* def sdnc= new SDNCAdapter() sdnc.assignError(execution)]]></bpmn2:script> </bpmn2:scriptTask> <bpmn2:sequenceFlow id="SequenceFlow_27" name="" sourceRef="assignError" targetRef="EndEvent_5"/> <bpmn2:endEvent id="EndEvent_5"> <bpmn2:incoming>SequenceFlow_27</bpmn2:incoming> </bpmn2:endEvent> </bpmn2:subProcess> <bpmn2:exclusiveGateway id="ExclusiveGateway_3" default="SequenceFlow_5"> <bpmn2:incoming>SequenceFlow_11</bpmn2:incoming> <bpmn2:outgoing>SequenceFlow_5</bpmn2:outgoing> <bpmn2:outgoing>SequenceFlow_7</bpmn2:outgoing> </bpmn2:exclusiveGateway> <bpmn2:sequenceFlow id="SequenceFlow_5" name="" sourceRef="ExclusiveGateway_3" targetRef="ScriptTask_2"/> <bpmn2:sequenceFlow id="SequenceFlow_7" name="" sourceRef="ExclusiveGateway_3" targetRef="ScriptTask_3"> <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression">#{execution.getVariable('source').equals('CCD')}</bpmn2:conditionExpression> </bpmn2:sequenceFlow> <bpmn2:endEvent id="EndEvent_2"> <bpmn2:incoming>SequenceFlow_33</bpmn2:incoming> </bpmn2:endEvent> <bpmn2:scriptTask id="ScriptTask_3" name="Prepare CCD Message" scriptFormat="groovy"> <bpmn2:incoming>SequenceFlow_7</bpmn2:incoming> <bpmn2:outgoing>SequenceFlow_10</bpmn2:outgoing> <bpmn2:script><![CDATA[import com.att.bpm.scripts.* def sdnc= new SDNCAdapter() sdnc.prepareCCDMessage(execution)]]></bpmn2:script> </bpmn2:scriptTask> <bpmn2:sequenceFlow id="SequenceFlow_10" name="" sourceRef="ScriptTask_3" targetRef="notifyCCD"/> <bpmn2:scriptTask id="ScriptTask_2" name="Prepare CSI Message" scriptFormat="groovy"> <bpmn2:incoming>SequenceFlow_5</bpmn2:incoming> <bpmn2:outgoing>SequenceFlow_3</bpmn2:outgoing> <bpmn2:script><![CDATA[import com.att.bpm.scripts.* def sdnc= new SDNCAdapter() sdnc.prepareCSIMessage(execution)]]></bpmn2:script> </bpmn2:scriptTask> <bpmn2:sequenceFlow id="SequenceFlow_3" name="" sourceRef="ScriptTask_2" targetRef="notifyCSI"/> <bpmn2:scriptTask id="ScriptTask_1" name="Prepare DB Message" scriptFormat="groovy"> <bpmn2:incoming>SequenceFlow_12</bpmn2:incoming> <bpmn2:outgoing>SequenceFlow_20</bpmn2:outgoing> <bpmn2:script><![CDATA[import com.att.bpm.scripts.* def sdnc= new SDNCAdapter() sdnc.prepareDBMessage(execution)]]></bpmn2:script> </bpmn2:scriptTask> <bpmn2:sequenceFlow id="SequenceFlow_20" name="" sourceRef="ScriptTask_1" targetRef="notifyDB"/> <bpmn2:endEvent id="EndEvent_3"> <bpmn2:incoming>SequenceFlow_24</bpmn2:incoming> </bpmn2:endEvent> <bpmn2:endEvent id="EndEvent_4"> <bpmn2:incoming>SequenceFlow_13</bpmn2:incoming> </bpmn2:endEvent> <bpmn2:serviceTask id="notifyDB" camunda:class="" name="Notify DB"> <bpmn2:extensionElements> <camunda:connector> <camunda:connectorId>soap-http-connector</camunda:connectorId> <camunda:inputOutput> <camunda:inputParameter name="url">${URN_mso_adapters_db_endpoint}</camunda:inputParameter> <camunda:inputParameter name="method">POST</camunda:inputParameter> <camunda:inputParameter name="headers"> <camunda:map> <camunda:entry key="content-type">application/soap+xml</camunda:entry> </camunda:map> </camunda:inputParameter> <camunda:inputParameter name="payload">${dbUpdateInterimStageCompletion}</camunda:inputParameter> <camunda:outputParameter name="dbUpdateInterimStageCompletionResponse"><![CDATA[${statusCode == null || statusCode == 204 ? "" : response}]]></camunda:outputParameter> <camunda:outputParameter name="dbUpdateInterimStageCompletionResponseCode">${statusCode}</camunda:outputParameter> </camunda:inputOutput> </camunda:connector> </bpmn2:extensionElements> <bpmn2:incoming>SequenceFlow_20</bpmn2:incoming> <bpmn2:outgoing>SequenceFlow_33</bpmn2:outgoing> </bpmn2:serviceTask> <bpmn2:serviceTask id="notifyCCD" name="Notify CCD"> <bpmn2:extensionElements> <camunda:connector> <camunda:connectorId>http-connector</camunda:connectorId> <camunda:inputOutput> <camunda:inputParameter name="url"><![CDATA[${execution.getVariable("ccd-notification-url")}]]></camunda:inputParameter> <camunda:inputParameter name="headers"> <camunda:map> <camunda:entry key="Content-Type">text/xml</camunda:entry> <camunda:entry key="Authorization"/> </camunda:map> </camunda:inputParameter> <camunda:inputParameter name="payload"><![CDATA[${execution.getVariable("ccd-notification-payload")}]]></camunda:inputParameter> <camunda:inputParameter name="method">POST</camunda:inputParameter> <camunda:outputParameter name="CCDResponse"><![CDATA[${statusCode == null || statusCode == 204 ? "" : response}]]></camunda:outputParameter> <camunda:outputParameter name="CCDResponseCode">${statusCode}</camunda:outputParameter> </camunda:inputOutput> </camunda:connector> </bpmn2:extensionElements> <bpmn2:incoming>SequenceFlow_10</bpmn2:incoming> <bpmn2:outgoing>SequenceFlow_13</bpmn2:outgoing> </bpmn2:serviceTask> <bpmn2:sequenceFlow id="SequenceFlow_13" name="" sourceRef="notifyCCD" targetRef="EndEvent_4"/> <bpmn2:serviceTask id="notifyCSI" camunda:class="" name="Notify CSI"> <bpmn2:extensionElements> <camunda:connector> <camunda:connectorId>soap-http-connector</camunda:connectorId> <camunda:inputOutput> <camunda:inputParameter name="url">${URN_csi_networkstatus_endpoint}</camunda:inputParameter> <camunda:inputParameter name="method">POST</camunda:inputParameter> <camunda:inputParameter name="headers"> <camunda:map> <camunda:entry key="content-type">application/soap+xml</camunda:entry> </camunda:map> </camunda:inputParameter> <camunda:inputParameter name="payload">${csiSendManagedNetworkNotificationRequest}</camunda:inputParameter> <camunda:outputParameter name="csiSendManagedNetworkStatusNotificationResponse">${response}</camunda:outputParameter> <camunda:outputParameter name="csiSendManagedNetworkStatusNotificationResponseCode">${statusCode}</camunda:outputParameter> </camunda:inputOutput> </camunda:connector> </bpmn2:extensionElements> <bpmn2:incoming>SequenceFlow_3</bpmn2:incoming> <bpmn2:outgoing>SequenceFlow_24</bpmn2:outgoing> </bpmn2:serviceTask> <bpmn2:sequenceFlow id="SequenceFlow_24" name="" sourceRef="notifyCSI" targetRef="EndEvent_3"/> <bpmn2:parallelGateway id="ParallelGateway_1"> <bpmn2:incoming>SequenceFlow_4</bpmn2:incoming> <bpmn2:outgoing>SequenceFlow_11</bpmn2:outgoing> <bpmn2:outgoing>SequenceFlow_12</bpmn2:outgoing> </bpmn2:parallelGateway> <bpmn2:sequenceFlow id="SequenceFlow_11" name="" sourceRef="ParallelGateway_1" targetRef="ExclusiveGateway_3"/> <bpmn2:sequenceFlow id="SequenceFlow_12" name="" sourceRef="ParallelGateway_1" targetRef="ScriptTask_1"/> <bpmn2:scriptTask id="toggleSuccess" name="Toggle Success Indicator" scriptFormat="groovy"> <bpmn2:incoming>SequenceFlow_21</bpmn2:incoming> <bpmn2:outgoing>SequenceFlow_31</bpmn2:outgoing> <bpmn2:script><![CDATA[import com.att.bpm.scripts.* def sdnc= new SDNCAdapter() sdnc.toggleSuccessIndicator(execution)]]></bpmn2:script> </bpmn2:scriptTask> <bpmn2:sequenceFlow id="SequenceFlow_31" name="" sourceRef="toggleSuccess" targetRef="ExclusiveGateway_2"/> <bpmn2:exclusiveGateway id="ExclusiveGateway_2" name="Service Config Activate?" default="SequenceFlow_23"> <bpmn2:incoming>SequenceFlow_31</bpmn2:incoming> <bpmn2:outgoing>SequenceFlow_4</bpmn2:outgoing> <bpmn2:outgoing>SequenceFlow_23</bpmn2:outgoing> </bpmn2:exclusiveGateway> <bpmn2:sequenceFlow id="SequenceFlow_4" name="Yes" sourceRef="ExclusiveGateway_2" targetRef="ParallelGateway_1"> <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("serviceConfigActivate")==true}]]></bpmn2:conditionExpression> </bpmn2:sequenceFlow> <bpmn2:sequenceFlow id="SequenceFlow_23" name="No" sourceRef="ExclusiveGateway_2" targetRef="EndEvent_1"/> <bpmn2:endEvent id="EndEvent_1"> <bpmn2:incoming>SequenceFlow_23</bpmn2:incoming> </bpmn2:endEvent> <bpmn2:boundaryEvent id="BoundaryEvent_2" name="" attachedToRef="notifyDB"> <bpmn2:outgoing>SequenceFlow_28</bpmn2:outgoing> <bpmn2:errorEventDefinition id="_ErrorEventDefinition_79" errorRef="Error_2"/> </bpmn2:boundaryEvent> <bpmn2:endEvent id="EndEvent_6"> <bpmn2:incoming>SequenceFlow_28</bpmn2:incoming> </bpmn2:endEvent> <bpmn2:sequenceFlow id="SequenceFlow_28" name="" sourceRef="BoundaryEvent_2" targetRef="EndEvent_6"/> <bpmn2:sequenceFlow id="SequenceFlow_33" name="" sourceRef="notifyDB" targetRef="EndEvent_2"/> </bpmn2:process> <bpmn2:message id="Message_1" name="sdncAdapterWorkflowRequest"/> <bpmn2:message id="Message_2" name="sdncAdapterCallbackRequest"/> <bpmn2:error id="Error_3" errorCode="MSOWorkflowException" name="MSO Workflow Exception"/> <bpmn2:signal id="Signal_1" name="InterimStatus"/> <bpmn2:error id="Error_2" errorCode="java.lang.Exception" name="Java Lang Exception"/> <bpmndi:BPMNDiagram id="BPMNDiagram_1"> <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="sdncAdapter"> <bpmndi:BPMNShape id="_BPMNShape_StartEvent_33" bpmnElement="SDNCAdapter_Start"> <dc:Bounds height="36.0" width="36.0" x="111.0" y="161.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="22.0" width="115.0" x="72.0" y="202.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNShape> <bpmndi:BPMNShape id="_BPMNShape_ServiceTask_62" bpmnElement="invokeSDNCAdapter"> <dc:Bounds height="80.0" width="100.0" x="342.0" y="139.0"/> </bpmndi:BPMNShape> <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_29" bpmnElement="isResponseOK" isMarkerVisible="true"> <dc:Bounds height="50.0" width="50.0" x="519.0" y="153.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="22.0" width="106.0" x="569.0" y="182.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNShape> <bpmndi:BPMNShape id="_BPMNShape_EndEvent_64" bpmnElement="endEventFlow"> <dc:Bounds height="36.0" width="36.0" x="1560.0" y="366.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="22.0" width="96.0" x="1595.0" y="373.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNShape> <bpmndi:BPMNShape id="_BPMNShape_EndEvent_65" bpmnElement="badResponseEndFlow"> <dc:Bounds height="36.0" width="36.0" x="762.0" y="104.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="22.0" width="149.0" x="804.0" y="111.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNShape> <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_5" bpmnElement="badSynchronousResponse" sourceElement="_BPMNShape_ExclusiveGateway_29" targetElement="_BPMNShape_ScriptTask_24"> <di:waypoint xsi:type="dc:Point" x="544.0" y="153.0"/> <di:waypoint xsi:type="dc:Point" x="544.0" y="122.0"/> <di:waypoint xsi:type="dc:Point" x="600.0" y="122.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="22.0" width="164.0" x="441.0" y="99.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNEdge> <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_1" bpmnElement="SequenceFlow_1" sourceElement="_BPMNShape_StartEvent_33" targetElement="_BPMNShape_ScriptTask_3"> <di:waypoint xsi:type="dc:Point" x="147.0" y="179.0"/> <di:waypoint xsi:type="dc:Point" x="194.0" y="179.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="0.0" width="0.0" x="171.0" y="179.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNEdge> <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_4" bpmnElement="goodSynchronousResponse" sourceElement="_BPMNShape_ExclusiveGateway_29" targetElement="_BPMNShape_ScriptTask_27"> <di:waypoint xsi:type="dc:Point" x="544.0" y="203.0"/> <di:waypoint xsi:type="dc:Point" x="544.0" y="246.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="22.0" width="172.0" x="459.0" y="208.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNEdge> <bpmndi:BPMNShape id="_BPMNShape_ServiceTask_68" bpmnElement="returnWorkflowResult"> <dc:Bounds height="80.0" width="100.0" x="1104.0" y="237.0"/> </bpmndi:BPMNShape> <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_3" bpmnElement="processMessage"> <dc:Bounds height="80.0" width="100.0" x="194.0" y="139.0"/> </bpmndi:BPMNShape> <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_8" bpmnElement="SequenceFlow_8" sourceElement="_BPMNShape_ScriptTask_3" targetElement="_BPMNShape_ServiceTask_62"> <di:waypoint xsi:type="dc:Point" x="294.0" y="179.0"/> <di:waypoint xsi:type="dc:Point" x="342.0" y="179.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="22.0" width="30.0" x="300.0" y="153.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNEdge> <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_14" bpmnElement="SequenceFlow_14" sourceElement="_BPMNShape_ServiceTask_68" targetElement="_BPMNShape_ExclusiveGateway_53"> <di:waypoint xsi:type="dc:Point" x="1204.0" y="277.0"/> <di:waypoint xsi:type="dc:Point" x="1248.0" y="276.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="22.0" width="37.0" x="1211.0" y="251.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNEdge> <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_15" bpmnElement="SequenceFlow_15" sourceElement="_BPMNShape_ServiceTask_62" targetElement="_BPMNShape_ExclusiveGateway_29"> <di:waypoint xsi:type="dc:Point" x="442.0" y="179.0"/> <di:waypoint xsi:type="dc:Point" x="480.0" y="179.0"/> <di:waypoint xsi:type="dc:Point" x="480.0" y="178.0"/> <di:waypoint xsi:type="dc:Point" x="519.0" y="178.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="22.0" width="37.0" x="468.0" y="153.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNEdge> <bpmndi:BPMNShape id="_BPMNShape_IntermediateCatchEvent_16" bpmnElement="IntermediateCatchEvent"> <dc:Bounds height="36.0" width="36.0" x="764.0" y="259.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="22.0" width="76.0" x="714.0" y="294.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNShape> <bpmndi:BPMNShape id="_BPMNShape_SubProcess_11" bpmnElement="SubProcess" isExpanded="true"> <dc:Bounds height="97.0" width="314.0" x="624.0" y="228.0"/> </bpmndi:BPMNShape> <bpmndi:BPMNShape id="_BPMNShape_StartEvent_38" bpmnElement="StartEvent"> <dc:Bounds height="36.0" width="36.0" x="660.0" y="259.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="22.0" width="70.0" x="627.0" y="294.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNShape> <bpmndi:BPMNShape id="_BPMNShape_EndEvent_90" bpmnElement="eEndEventSubprocess"> <dc:Bounds height="36.0" width="36.0" x="865.0" y="259.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="22.0" width="138.0" x="805.0" y="294.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNShape> <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_9" bpmnElement="SequenceFlow_9" sourceElement="_BPMNShape_SubProcess_11" targetElement="_BPMNShape_ExclusiveGateway_51"> <di:waypoint xsi:type="dc:Point" x="938.0" y="276.0"/> <di:waypoint xsi:type="dc:Point" x="996.0" y="276.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="0.0" width="0.0" x="967.0" y="254.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNEdge> <bpmndi:BPMNShape id="_BPMNShape_BoundaryEvent_21" bpmnElement="BoundaryEvent_1"> <dc:Bounds height="36.0" width="36.0" x="781.0" y="307.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="22.0" width="97.0" x="704.0" y="340.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNShape> <bpmndi:BPMNShape id="_BPMNShape_EndEvent_91" bpmnElement="endEventException"> <dc:Bounds height="36.0" width="36.0" x="1488.0" y="74.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="22.0" width="114.0" x="1523.0" y="81.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNShape> <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_2" bpmnElement="timeOut" sourceElement="_BPMNShape_BoundaryEvent_21" targetElement="_BPMNShape_ExclusiveGateway_51"> <di:waypoint xsi:type="dc:Point" x="799.0" y="343.0"/> <di:waypoint xsi:type="dc:Point" x="799.0" y="365.0"/> <di:waypoint xsi:type="dc:Point" x="1021.0" y="365.0"/> <di:waypoint xsi:type="dc:Point" x="1021.0" y="301.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="22.0" width="63.0" x="874.0" y="340.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNEdge> <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_24" bpmnElement="setBadResponse"> <dc:Bounds height="80.0" width="100.0" x="600.0" y="82.0"/> </bpmndi:BPMNShape> <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_3" bpmnElement="Exception" sourceElement="_BPMNShape_ScriptTask_24" targetElement="_BPMNShape_EndEvent_65"> <di:waypoint xsi:type="dc:Point" x="700.0" y="122.0"/> <di:waypoint xsi:type="dc:Point" x="762.0" y="122.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="22.0" width="64.0" x="699.0" y="99.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNEdge> <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_25" bpmnElement="setTimeoutEx"> <dc:Bounds height="80.0" width="100.0" x="1299.0" y="52.0"/> </bpmndi:BPMNShape> <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_11" bpmnElement="Error" sourceElement="_BPMNShape_ScriptTask_25" targetElement="_BPMNShape_EndEvent_91"> <di:waypoint xsi:type="dc:Point" x="1399.0" y="92.0"/> <di:waypoint xsi:type="dc:Point" x="1488.0" y="92.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="22.0" width="34.0" x="1416.0" y="70.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNEdge> <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_16" bpmnElement="SequenceFlow_16" sourceElement="_BPMNShape_IntermediateCatchEvent_16" targetElement="_BPMNShape_EndEvent_90"> <di:waypoint xsi:type="dc:Point" x="800.0" y="277.0"/> <di:waypoint xsi:type="dc:Point" x="865.0" y="277.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="0.0" width="0.0" x="822.0" y="259.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNEdge> <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_18" bpmnElement="SequenceFlow_18" sourceElement="_BPMNShape_StartEvent_38" targetElement="_BPMNShape_IntermediateCatchEvent_16"> <di:waypoint xsi:type="dc:Point" x="696.0" y="277.0"/> <di:waypoint xsi:type="dc:Point" x="764.0" y="277.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="0.0" width="0.0" x="718.0" y="259.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNEdge> <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_51" bpmnElement="timeOutCheck" isMarkerVisible="true"> <dc:Bounds height="50.0" width="50.0" x="996.0" y="251.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="22.0" width="81.0" x="982.0" y="228.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNShape> <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_53" bpmnElement="timeoutError" isMarkerVisible="true"> <dc:Bounds height="50.0" width="50.0" x="1248.0" y="251.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="22.0" width="118.0" x="1300.0" y="266.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNShape> <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_17" bpmnElement="noTimeoutError" sourceElement="_BPMNShape_ExclusiveGateway_53" targetElement="_BPMNShape_ExclusiveGateway_54"> <di:waypoint xsi:type="dc:Point" x="1273.0" y="301.0"/> <di:waypoint xsi:type="dc:Point" x="1273.0" y="359.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="22.0" width="72.0" x="1280.0" y="324.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNEdge> <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_19" bpmnElement="SequenceFlow_19" sourceElement="_BPMNShape_ExclusiveGateway_53" targetElement="_BPMNShape_ScriptTask_25"> <di:waypoint xsi:type="dc:Point" x="1273.0" y="251.0"/> <di:waypoint xsi:type="dc:Point" x="1273.0" y="92.0"/> <di:waypoint xsi:type="dc:Point" x="1299.0" y="92.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="22.0" width="82.0" x="1280.0" y="168.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNEdge> <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_54" bpmnElement="ExclusiveGateway_1" isMarkerVisible="true"> <dc:Bounds height="50.0" width="50.0" x="1248.0" y="359.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="22.0" width="123.0" x="1127.0" y="373.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNShape> <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_7" bpmnElement="Done" sourceElement="_BPMNShape_ExclusiveGateway_54" targetElement="_BPMNShape_ScriptTask_247"> <di:waypoint xsi:type="dc:Point" x="1298.0" y="384.0"/> <di:waypoint xsi:type="dc:Point" x="1383.0" y="384.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="22.0" width="36.0" x="1316.0" y="384.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNEdge> <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_27" bpmnElement="resetCallbackRequest"> <dc:Bounds height="80.0" width="100.0" x="494.0" y="246.0"/> </bpmndi:BPMNShape> <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_12" bpmnElement="SequenceFlow_2" sourceElement="_BPMNShape_ScriptTask_27" targetElement="_BPMNShape_SubProcess_11"> <di:waypoint xsi:type="dc:Point" x="594.0" y="286.0"/> <di:waypoint xsi:type="dc:Point" x="609.0" y="286.0"/> <di:waypoint xsi:type="dc:Point" x="624.0" y="285.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="6.0" width="6.0" x="607.0" y="286.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNEdge> <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_37" bpmnElement="SequenceFlow_29" sourceElement="_BPMNShape_ExclusiveGateway_51" targetElement="_BPMNShape_ServiceTask_68"> <di:waypoint xsi:type="dc:Point" x="1046.0" y="276.0"/> <di:waypoint xsi:type="dc:Point" x="1075.0" y="276.0"/> <di:waypoint xsi:type="dc:Point" x="1075.0" y="277.0"/> <di:waypoint xsi:type="dc:Point" x="1104.0" y="277.0"/> </bpmndi:BPMNEdge> <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_38" bpmnElement="SequenceFlow_30" sourceElement="_BPMNShape_ExclusiveGateway_54" targetElement="_BPMNShape_ParallelGateway_14"> <di:waypoint xsi:type="dc:Point" x="1273.0" y="409.0"/> <di:waypoint xsi:type="dc:Point" x="1273.0" y="467.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="22.0" width="60.0" x="1273.0" y="423.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNEdge> <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_55" bpmnElement="ExclusiveGateway_2" isMarkerVisible="true"> <dc:Bounds height="50.0" width="50.0" x="1248.0" y="663.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="22.0" width="145.0" x="1105.0" y="678.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNShape> <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_28" bpmnElement="ScriptTask_2"> <dc:Bounds height="80.0" width="100.0" x="1173.0" y="858.0"/> </bpmndi:BPMNShape> <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_13" bpmnElement="SequenceFlow_4" sourceElement="_BPMNShape_ExclusiveGateway_55" targetElement="_BPMNShape_ParallelGateway_12"> <di:waypoint xsi:type="dc:Point" x="1273.0" y="713.0"/> <di:waypoint xsi:type="dc:Point" x="1273.0" y="770.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="22.0" width="29.0" x="1273.0" y="720.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNEdge> <bpmndi:BPMNShape id="_BPMNShape_ServiceTask_89" bpmnElement="notifyCSI"> <dc:Bounds height="80.0" width="100.0" x="1173.0" y="984.0"/> </bpmndi:BPMNShape> <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_10" bpmnElement="SequenceFlow_3" sourceElement="_BPMNShape_ScriptTask_28" targetElement="_BPMNShape_ServiceTask_89"> <di:waypoint xsi:type="dc:Point" x="1223.0" y="938.0"/> <di:waypoint xsi:type="dc:Point" x="1223.0" y="984.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="6.0" width="6.0" x="1220.0" y="976.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNEdge> <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_75" bpmnElement="ScriptTask_1"> <dc:Bounds height="80.0" width="100.0" x="1345.0" y="858.0"/> </bpmndi:BPMNShape> <bpmndi:BPMNShape id="_BPMNShape_ParallelGateway_12" bpmnElement="ParallelGateway_1"> <dc:Bounds height="50.0" width="50.0" x="1248.0" y="770.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="0.0" width="0.0" x="1273.0" y="825.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNShape> <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_23" bpmnElement="SequenceFlow_11" sourceElement="_BPMNShape_ParallelGateway_12" targetElement="_BPMNShape_ExclusiveGateway_100"> <di:waypoint xsi:type="dc:Point" x="1248.0" y="795.0"/> <di:waypoint xsi:type="dc:Point" x="1105.0" y="795.0"/> <di:waypoint xsi:type="dc:Point" x="1105.0" y="872.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="6.0" width="6.0" x="1136.0" y="807.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNEdge> <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_24" bpmnElement="SequenceFlow_12" sourceElement="_BPMNShape_ParallelGateway_12" targetElement="_BPMNShape_ScriptTask_75"> <di:waypoint xsi:type="dc:Point" x="1298.0" y="795.0"/> <di:waypoint xsi:type="dc:Point" x="1394.0" y="795.0"/> <di:waypoint xsi:type="dc:Point" x="1395.0" y="858.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="6.0" width="6.0" x="1376.0" y="807.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNEdge> <bpmndi:BPMNShape id="_BPMNShape_ServiceTask_90" bpmnElement="notifyDB"> <dc:Bounds height="80.0" width="100.0" x="1345.0" y="984.0"/> </bpmndi:BPMNShape> <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_27" bpmnElement="SequenceFlow_20" sourceElement="_BPMNShape_ScriptTask_75" targetElement="_BPMNShape_ServiceTask_90"> <di:waypoint xsi:type="dc:Point" x="1395.0" y="938.0"/> <di:waypoint xsi:type="dc:Point" x="1395.0" y="984.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="6.0" width="6.0" x="1392.0" y="967.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNEdge> <bpmndi:BPMNShape id="_BPMNShape_ParallelGateway_14" bpmnElement="ParallelGateway_3"> <dc:Bounds height="50.0" width="50.0" x="1248.0" y="467.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="0.0" width="0.0" x="1273.0" y="522.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNShape> <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_28" bpmnElement="SequenceFlow_21" sourceElement="_BPMNShape_ParallelGateway_14" targetElement="_BPMNShape_ScriptTask_255"> <di:waypoint xsi:type="dc:Point" x="1273.0" y="517.0"/> <di:waypoint xsi:type="dc:Point" x="1274.0" y="552.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="6.0" width="6.0" x="1270.0" y="533.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNEdge> <bpmndi:BPMNShape id="_BPMNShape_EndEvent_96" bpmnElement="EndEvent_1"> <dc:Bounds height="36.0" width="36.0" x="1444.0" y="671.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="0.0" width="0.0" x="1462.0" y="712.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNShape> <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_30" bpmnElement="SequenceFlow_23" sourceElement="_BPMNShape_ExclusiveGateway_55" targetElement="_BPMNShape_EndEvent_96"> <di:waypoint xsi:type="dc:Point" x="1298.0" y="688.0"/> <di:waypoint xsi:type="dc:Point" x="1444.0" y="689.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="22.0" width="22.0" x="1320.0" y="688.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNEdge> <bpmndi:BPMNShape id="_BPMNShape_EndEvent_97" bpmnElement="EndEvent_2"> <dc:Bounds height="36.0" width="36.0" x="1377.0" y="1117.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="0.0" width="0.0" x="1395.0" y="1158.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNShape> <bpmndi:BPMNShape id="_BPMNShape_EndEvent_98" bpmnElement="EndEvent_3"> <dc:Bounds height="36.0" width="36.0" x="1205.0" y="1117.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="0.0" width="0.0" x="1223.0" y="1158.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNShape> <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_31" bpmnElement="SequenceFlow_24" sourceElement="_BPMNShape_ServiceTask_89" targetElement="_BPMNShape_EndEvent_98"> <di:waypoint xsi:type="dc:Point" x="1223.0" y="1064.0"/> <di:waypoint xsi:type="dc:Point" x="1223.0" y="1117.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="6.0" width="6.0" x="1220.0" y="1187.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNEdge> <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_33" bpmnElement="SequenceFlow_26" sourceElement="_BPMNShape_ParallelGateway_14" targetElement="_BPMNShape_ScriptTask_27"> <di:waypoint xsi:type="dc:Point" x="1248.0" y="492.0"/> <di:waypoint xsi:type="dc:Point" x="544.0" y="492.0"/> <di:waypoint xsi:type="dc:Point" x="544.0" y="326.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="22.0" width="269.0" x="684.0" y="467.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNEdge> <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_100" bpmnElement="ExclusiveGateway_3" isMarkerVisible="true"> <dc:Bounds height="50.0" width="50.0" x="1080.0" y="872.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="0.0" width="0.0" x="1105.0" y="927.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNShape> <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_20" bpmnElement="SequenceFlow_5" sourceElement="_BPMNShape_ExclusiveGateway_100" targetElement="_BPMNShape_ScriptTask_28"> <di:waypoint xsi:type="dc:Point" x="1130.0" y="897.0"/> <di:waypoint xsi:type="dc:Point" x="1173.0" y="898.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="6.0" width="6.0" x="1148.0" y="897.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNEdge> <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_167" bpmnElement="ScriptTask_3"> <dc:Bounds height="80.0" width="100.0" x="941.0" y="858.0"/> </bpmndi:BPMNShape> <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_21" bpmnElement="SequenceFlow_7" sourceElement="_BPMNShape_ExclusiveGateway_100" targetElement="_BPMNShape_ScriptTask_167"> <di:waypoint xsi:type="dc:Point" x="1080.0" y="897.0"/> <di:waypoint xsi:type="dc:Point" x="1041.0" y="898.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="6.0" width="6.0" x="1042.0" y="898.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNEdge> <bpmndi:BPMNShape id="_BPMNShape_ServiceTask_96" bpmnElement="notifyCCD"> <dc:Bounds height="80.0" width="100.0" x="942.0" y="984.0"/> </bpmndi:BPMNShape> <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_22" bpmnElement="SequenceFlow_10" sourceElement="_BPMNShape_ScriptTask_167" targetElement="_BPMNShape_ServiceTask_96"> <di:waypoint xsi:type="dc:Point" x="991.0" y="938.0"/> <di:waypoint xsi:type="dc:Point" x="992.0" y="984.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="6.0" width="6.0" x="987.0" y="974.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNEdge> <bpmndi:BPMNShape id="_BPMNShape_EndEvent_150" bpmnElement="EndEvent_4"> <dc:Bounds height="36.0" width="36.0" x="974.0" y="1117.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="0.0" width="0.0" x="992.0" y="1158.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNShape> <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_25" bpmnElement="SequenceFlow_13" sourceElement="_BPMNShape_ServiceTask_96" targetElement="_BPMNShape_EndEvent_150"> <di:waypoint xsi:type="dc:Point" x="991.0" y="1064.0"/> <di:waypoint xsi:type="dc:Point" x="991.0" y="1090.0"/> <di:waypoint xsi:type="dc:Point" x="992.0" y="1117.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="6.0" width="6.0" x="990.0" y="1103.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNEdge> <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_247" bpmnElement="toggleSuccessIndicator"> <dc:Bounds height="80.0" width="100.0" x="1383.0" y="344.0"/> </bpmndi:BPMNShape> <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_26" bpmnElement="SequenceFlow_17" sourceElement="_BPMNShape_ScriptTask_247" targetElement="_BPMNShape_EndEvent_64"> <di:waypoint xsi:type="dc:Point" x="1483.0" y="384.0"/> <di:waypoint xsi:type="dc:Point" x="1560.0" y="384.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="6.0" width="6.0" x="1499.0" y="384.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNEdge> <bpmndi:BPMNShape id="_BPMNShape_SubProcess_19" bpmnElement="errorHandlingSubProcess" isExpanded="true"> <dc:Bounds height="193.0" width="353.0" x="248.0" y="866.0"/> </bpmndi:BPMNShape> <bpmndi:BPMNShape id="_BPMNShape_StartEvent_63" bpmnElement="catchErrors"> <dc:Bounds height="36.0" width="36.0" x="283.0" y="945.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="22.0" width="40.0" x="281.0" y="986.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNShape> <bpmndi:BPMNShape id="_BPMNShape_EndEvent_213" bpmnElement="EndEvent_5"> <dc:Bounds height="36.0" width="36.0" x="523.0" y="945.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="0.0" width="0.0" x="541.0" y="986.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNShape> <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_249" bpmnElement="assignError"> <dc:Bounds height="80.0" width="100.0" x="367.0" y="923.0"/> </bpmndi:BPMNShape> <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_29" bpmnElement="SequenceFlow_22" sourceElement="_BPMNShape_StartEvent_63" targetElement="_BPMNShape_ScriptTask_249"> <di:waypoint xsi:type="dc:Point" x="319.0" y="963.0"/> <di:waypoint xsi:type="dc:Point" x="367.0" y="963.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="6.0" width="6.0" x="346.0" y="963.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNEdge> <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_34" bpmnElement="SequenceFlow_27" sourceElement="_BPMNShape_ScriptTask_249" targetElement="_BPMNShape_EndEvent_213"> <di:waypoint xsi:type="dc:Point" x="467.0" y="963.0"/> <di:waypoint xsi:type="dc:Point" x="523.0" y="963.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="6.0" width="6.0" x="492.0" y="963.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNEdge> <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_255" bpmnElement="toggleSuccess"> <dc:Bounds height="80.0" width="100.0" x="1224.0" y="552.0"/> </bpmndi:BPMNShape> <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_36" bpmnElement="SequenceFlow_31" sourceElement="_BPMNShape_ScriptTask_255" targetElement="_BPMNShape_ExclusiveGateway_55"> <di:waypoint xsi:type="dc:Point" x="1274.0" y="632.0"/> <di:waypoint xsi:type="dc:Point" x="1274.0" y="646.0"/> <di:waypoint xsi:type="dc:Point" x="1273.0" y="646.0"/> <di:waypoint xsi:type="dc:Point" x="1273.0" y="663.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="6.0" width="6.0" x="1271.0" y="646.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNEdge> <bpmndi:BPMNShape id="_BPMNShape_BoundaryEvent_22" bpmnElement="BoundaryEvent_2"> <dc:Bounds height="36.0" width="36.0" x="1427.0" y="1005.0"/> </bpmndi:BPMNShape> <bpmndi:BPMNShape id="_BPMNShape_EndEvent_214" bpmnElement="EndEvent_6"> <dc:Bounds height="36.0" width="36.0" x="1488.0" y="1005.0"/> <bpmndi:BPMNLabel> <dc:Bounds height="0.0" width="0.0" x="1506.0" y="1046.0"/> </bpmndi:BPMNLabel> </bpmndi:BPMNShape> <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_35" bpmnElement="SequenceFlow_28" sourceElement="_BPMNShape_BoundaryEvent_22" targetElement="_BPMNShape_EndEvent_214"> <di:waypoint xsi:type="dc:Point" x="1463.0" y="1023.0"/> <di:waypoint xsi:type="dc:Point" x="1488.0" y="1023.0"/> </bpmndi:BPMNEdge> <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_40" bpmnElement="SequenceFlow_33" sourceElement="_BPMNShape_ServiceTask_90" targetElement="_BPMNShape_EndEvent_97"> <di:waypoint xsi:type="dc:Point" x="1395.0" y="1064.0"/> <di:waypoint xsi:type="dc:Point" x="1395.0" y="1117.0"/> </bpmndi:BPMNEdge> </bpmndi:BPMNPlane> </bpmndi:BPMNDiagram> </bpmn2:definitions>