blob: 0ef6c84494b929277bb2f5282468110837b7fe29 [file] [log] [blame]
xg353yb6b7bef2017-04-11 13:30:42 +02001<?xml version="1.0" encoding="UTF-8"?>
Kalkere Ramesh, Sharan (sk720x)b3897d12018-12-10 12:00:37 -05002<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="_l2hJ8CccEeW3d--PaFJMbg" targetNamespace="http://camunda.org/schema/1.0/bpmn" exporter="Camunda Modeler" exporterVersion="1.10.0" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL BPMN20.xsd">
xg353yb6b7bef2017-04-11 13:30:42 +02003 <bpmn2:process id="sdncAdapter" name="SDNC Adapter" isExecutable="true">
4 <bpmn2:exclusiveGateway id="isResponseOK" name="is Response Ok?" default="badSynchronousResponse">
5 <bpmn2:incoming>SequenceFlow_15</bpmn2:incoming>
6 <bpmn2:outgoing>badSynchronousResponse</bpmn2:outgoing>
7 <bpmn2:outgoing>goodSynchronousResponse</bpmn2:outgoing>
8 </bpmn2:exclusiveGateway>
9 <bpmn2:sequenceFlow id="badSynchronousResponse" name="Bad synchronous response" sourceRef="isResponseOK" targetRef="setBadResponse" />
10 <bpmn2:sequenceFlow id="goodSynchronousResponse" name="Good synchronous response" sourceRef="isResponseOK" targetRef="resetCallbackRequest">
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -050011 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("SDNCA_ResponseCode")=='200'}]]></bpmn2:conditionExpression>
xg353yb6b7bef2017-04-11 13:30:42 +020012 </bpmn2:sequenceFlow>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070013 <bpmn2:scriptTask id="setBadResponse" name="Set Bad Response&#10;&#10;Exception" scriptFormat="groovy">
xg353yb6b7bef2017-04-11 13:30:42 +020014 <bpmn2:incoming>badSynchronousResponse</bpmn2:incoming>
15 <bpmn2:outgoing>Exception</bpmn2:outgoing>
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -050016 <bpmn2:script><![CDATA[import org.onap.so.bpmn.common.scripts.*
xg353yb6b7bef2017-04-11 13:30:42 +020017
18int responseCode = execution.getVariable("SDNCA_ResponseCode")
19ExceptionUtil exceptionUtil = new ExceptionUtil()
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -050020exceptionUtil.buildWorkflowException(execution, 7000, "Could not communicate with the SDNC Adapter" )]]></bpmn2:script>
xg353yb6b7bef2017-04-11 13:30:42 +020021 </bpmn2:scriptTask>
22 <bpmn2:sequenceFlow id="Exception" name="Exception" sourceRef="setBadResponse" targetRef="badResponseEndFlow" />
Benjamin, Max (mb388a)e8df6b72019-01-20 18:30:39 -050023 <bpmn2:serviceTask id="invokeSDNCAdapter" name="Invoke SDNC Adapter" camunda:class="">
xg353yb6b7bef2017-04-11 13:30:42 +020024 <bpmn2:extensionElements>
25 <camunda:connector>
26 <camunda:inputOutput>
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -050027 <camunda:inputParameter name="url"><![CDATA[${execution.getVariable("mso.adapters.sdnc.endpoint")}]]></camunda:inputParameter>
xg353yb6b7bef2017-04-11 13:30:42 +020028 <camunda:inputParameter name="method">POST</camunda:inputParameter>
29 <camunda:inputParameter name="headers">
30 <camunda:map>
31 <camunda:entry key="content-type">application/soap+xml</camunda:entry>
32 <camunda:entry key="Authorization">#{BasicAuthHeaderValue}</camunda:entry>
Kalkere Ramesh, Sharan (sk720x)b3897d12018-12-10 12:00:37 -050033 <camunda:entry key="X-ONAP-RequestID"><![CDATA[#{execution.getVariable("mso-request-id")}]]></camunda:entry>
xg353yb6b7bef2017-04-11 13:30:42 +020034 </camunda:map>
35 </camunda:inputParameter>
36 <camunda:inputParameter name="payload">${sdncAdapterRequest}</camunda:inputParameter>
37 <camunda:outputParameter name="sdncAdapterWorkflowResponse">${response}</camunda:outputParameter>
38 <camunda:outputParameter name="SDNCA_ResponseCode">${statusCode}</camunda:outputParameter>
39 </camunda:inputOutput>
40 <camunda:connectorId>soap-http-connector</camunda:connectorId>
41 </camunda:connector>
42 </bpmn2:extensionElements>
43 <bpmn2:incoming>SequenceFlow_8</bpmn2:incoming>
44 <bpmn2:outgoing>SequenceFlow_15</bpmn2:outgoing>
45 </bpmn2:serviceTask>
46 <bpmn2:sequenceFlow id="SequenceFlow_15" sourceRef="invokeSDNCAdapter" targetRef="isResponseOK" />
47 <bpmn2:endEvent id="badResponseEndFlow" name="Bad Response End Flow">
48 <bpmn2:incoming>Exception</bpmn2:incoming>
49 <bpmn2:errorEventDefinition id="_ErrorEventDefinition_77" errorRef="Error_3" />
50 </bpmn2:endEvent>
51 <bpmn2:startEvent id="SDNCAdapter_Start" name="Incoming Message">
52 <bpmn2:outgoing>SequenceFlow_1</bpmn2:outgoing>
53 <bpmn2:messageEventDefinition id="_MessageEventDefinition_3" messageRef="Message_1" />
54 </bpmn2:startEvent>
55 <bpmn2:sequenceFlow id="SequenceFlow_1" sourceRef="SDNCAdapter_Start" targetRef="processMessage" />
56 <bpmn2:scriptTask id="processMessage" name="Process message" scriptFormat="groovy">
57 <bpmn2:extensionElements>
58 <camunda:inputOutput>
59 <camunda:inputParameter name="ScriptObject">
60 <camunda:map>
61 <camunda:entry key="MethodName">massageSDNCRequestScript</camunda:entry>
62 <camunda:entry key="Params" />
63 </camunda:map>
64 </camunda:inputParameter>
65 </camunda:inputOutput>
66 </bpmn2:extensionElements>
67 <bpmn2:incoming>SequenceFlow_1</bpmn2:incoming>
68 <bpmn2:outgoing>SequenceFlow_8</bpmn2:outgoing>
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -050069 <bpmn2:script><![CDATA[import org.onap.so.bpmn.common.scripts.*
xg353yb6b7bef2017-04-11 13:30:42 +020070def sdnc= new SDNCAdapter()
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -050071sdnc.preProcessRequest(execution)]]></bpmn2:script>
xg353yb6b7bef2017-04-11 13:30:42 +020072 </bpmn2:scriptTask>
73 <bpmn2:sequenceFlow id="SequenceFlow_8" sourceRef="processMessage" targetRef="invokeSDNCAdapter" />
xg353yb6b7bef2017-04-11 13:30:42 +020074 <bpmn2:scriptTask id="returnWorkflowResult" name="Return workflow result" scriptFormat="groovy">
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070075 <bpmn2:incoming>SequenceFlow_9</bpmn2:incoming>
76 <bpmn2:incoming>SequenceFlow_11ah5pw</bpmn2:incoming>
xg353yb6b7bef2017-04-11 13:30:42 +020077 <bpmn2:outgoing>SequenceFlow_14</bpmn2:outgoing>
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -050078 <bpmn2:script><![CDATA[import org.onap.so.bpmn.common.scripts.*
xg353yb6b7bef2017-04-11 13:30:42 +020079def sdnc= new SDNCAdapter()
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -050080sdnc.postProcessResponse(execution)]]></bpmn2:script>
xg353yb6b7bef2017-04-11 13:30:42 +020081 </bpmn2:scriptTask>
82 <bpmn2:sequenceFlow id="SequenceFlow_14" sourceRef="returnWorkflowResult" targetRef="timeoutError" />
83 <bpmn2:exclusiveGateway id="timeoutError" name="Did Timeout occur?" default="noTimeoutError">
84 <bpmn2:incoming>SequenceFlow_14</bpmn2:incoming>
85 <bpmn2:outgoing>noTimeoutError</bpmn2:outgoing>
86 <bpmn2:outgoing>SequenceFlow_19</bpmn2:outgoing>
87 </bpmn2:exclusiveGateway>
88 <bpmn2:sequenceFlow id="noTimeoutError" name="No Timeout" sourceRef="timeoutError" targetRef="ExclusiveGateway_1" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070089 <bpmn2:sequenceFlow id="SequenceFlow_19" name="Timeout" sourceRef="timeoutError" targetRef="endEventException">
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -050090 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("asynchronousResponseTimeout")==true}]]></bpmn2:conditionExpression>
xg353yb6b7bef2017-04-11 13:30:42 +020091 </bpmn2:sequenceFlow>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040092 <bpmn2:subProcess id="SubProcess" name="Wait for asynchronous message" camunda:asyncAfter="true">
xg353yb6b7bef2017-04-11 13:30:42 +020093 <bpmn2:incoming>SequenceFlow_2</bpmn2:incoming>
94 <bpmn2:outgoing>SequenceFlow_9</bpmn2:outgoing>
xg353yb6b7bef2017-04-11 13:30:42 +020095 <bpmn2:startEvent id="StartEvent" name="Start Event">
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070096 <bpmn2:outgoing>SequenceFlow_1eciucn</bpmn2:outgoing>
xg353yb6b7bef2017-04-11 13:30:42 +020097 </bpmn2:startEvent>
xg353yb6b7bef2017-04-11 13:30:42 +020098 <bpmn2:intermediateCatchEvent id="IntermediateCatchEvent" name="Catch Event">
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070099 <bpmn2:incoming>SequenceFlow_1eciucn</bpmn2:incoming>
xg353yb6b7bef2017-04-11 13:30:42 +0200100 <bpmn2:outgoing>SequenceFlow_16</bpmn2:outgoing>
101 <bpmn2:messageEventDefinition id="MessageEventDefinition_2" messageRef="Message_2" />
102 </bpmn2:intermediateCatchEvent>
103 <bpmn2:sequenceFlow id="SequenceFlow_16" sourceRef="IntermediateCatchEvent" targetRef="eEndEventSubprocess" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700104 <bpmn2:sequenceFlow id="SequenceFlow_1eciucn" sourceRef="StartEvent" targetRef="IntermediateCatchEvent" />
105 <bpmn2:endEvent id="eEndEventSubprocess" name="End Event Subprocess">
106 <bpmn2:incoming>SequenceFlow_16</bpmn2:incoming>
107 </bpmn2:endEvent>
xg353yb6b7bef2017-04-11 13:30:42 +0200108 </bpmn2:subProcess>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700109 <bpmn2:sequenceFlow id="SequenceFlow_9" sourceRef="SubProcess" targetRef="returnWorkflowResult" />
110 <bpmn2:scriptTask id="setTimeoutEx" name="Set Timeout&#10;and Stop Listening for Callback" scriptFormat="groovy">
111 <bpmn2:incoming>SequenceFlow_0mzs1ze</bpmn2:incoming>
112 <bpmn2:outgoing>SequenceFlow_11ah5pw</bpmn2:outgoing>
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -0500113 <bpmn2:script><![CDATA[import org.onap.so.bpmn.common.scripts.*
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700114def sdnc= new SDNCAdapter()
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -0500115sdnc.setTimeout(execution)]]></bpmn2:script>
xg353yb6b7bef2017-04-11 13:30:42 +0200116 </bpmn2:scriptTask>
xg353yb6b7bef2017-04-11 13:30:42 +0200117 <bpmn2:scriptTask id="resetCallbackRequest" name="Reset callback request and set timer value" scriptFormat="groovy">
118 <bpmn2:incoming>goodSynchronousResponse</bpmn2:incoming>
119 <bpmn2:incoming>SequenceFlow_26</bpmn2:incoming>
120 <bpmn2:outgoing>SequenceFlow_2</bpmn2:outgoing>
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -0500121 <bpmn2:script><![CDATA[import org.onap.so.bpmn.common.scripts.*
xg353yb6b7bef2017-04-11 13:30:42 +0200122def sdnc= new SDNCAdapter()
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -0500123sdnc.resetCallbackRequest(execution)]]></bpmn2:script>
xg353yb6b7bef2017-04-11 13:30:42 +0200124 </bpmn2:scriptTask>
125 <bpmn2:sequenceFlow id="SequenceFlow_2" name="" sourceRef="resetCallbackRequest" targetRef="SubProcess" />
126 <bpmn2:exclusiveGateway id="ExclusiveGateway_1" name="Check final indicator" default="Done">
127 <bpmn2:incoming>noTimeoutError</bpmn2:incoming>
128 <bpmn2:outgoing>Done</bpmn2:outgoing>
129 <bpmn2:outgoing>SequenceFlow_30</bpmn2:outgoing>
130 </bpmn2:exclusiveGateway>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400131 <bpmn2:sequenceFlow id="Done" name="Done" sourceRef="ExclusiveGateway_1" targetRef="ResetInterimNotificationFlag" />
xg353yb6b7bef2017-04-11 13:30:42 +0200132 <bpmn2:sequenceFlow id="SequenceFlow_30" name="Not Done" sourceRef="ExclusiveGateway_1" targetRef="ParallelGateway_3">
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -0500133 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("continueListening")==true}]]></bpmn2:conditionExpression>
xg353yb6b7bef2017-04-11 13:30:42 +0200134 </bpmn2:sequenceFlow>
135 <bpmn2:scriptTask id="toggleSuccessIndicator" name="Toggle Success Indicator" scriptFormat="groovy">
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400136 <bpmn2:incoming>SequenceFlow_1w1za5m</bpmn2:incoming>
xg353yb6b7bef2017-04-11 13:30:42 +0200137 <bpmn2:outgoing>SequenceFlow_17</bpmn2:outgoing>
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -0500138 <bpmn2:script><![CDATA[import org.onap.so.bpmn.common.scripts.*
xg353yb6b7bef2017-04-11 13:30:42 +0200139def sdnc= new SDNCAdapter()
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -0500140sdnc.toggleSuccessIndicator(execution)]]></bpmn2:script>
xg353yb6b7bef2017-04-11 13:30:42 +0200141 </bpmn2:scriptTask>
142 <bpmn2:sequenceFlow id="SequenceFlow_17" name="" sourceRef="toggleSuccessIndicator" targetRef="endEventFlow" />
143 <bpmn2:endEvent id="endEventFlow" name="End Event Flow">
144 <bpmn2:extensionElements>
145 <camunda:connector>
146 <camunda:inputOutput>
147 <camunda:outputParameter name="sdncAdapterResponse">${sdncAdapterWorkflowResponse}</camunda:outputParameter>
148 </camunda:inputOutput>
149 </camunda:connector>
150 </bpmn2:extensionElements>
151 <bpmn2:incoming>SequenceFlow_17</bpmn2:incoming>
152 <bpmn2:messageEventDefinition id="_MessageEventDefinition_6" />
153 </bpmn2:endEvent>
154 <bpmn2:parallelGateway id="ParallelGateway_3">
155 <bpmn2:incoming>SequenceFlow_30</bpmn2:incoming>
156 <bpmn2:outgoing>SequenceFlow_21</bpmn2:outgoing>
157 <bpmn2:outgoing>SequenceFlow_26</bpmn2:outgoing>
158 </bpmn2:parallelGateway>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400159 <bpmn2:sequenceFlow id="SequenceFlow_21" name="" sourceRef="ParallelGateway_3" targetRef="ExclusiveGateway_2" />
xg353yb6b7bef2017-04-11 13:30:42 +0200160 <bpmn2:sequenceFlow id="SequenceFlow_26" name="Continue listening for asynchronous message" sourceRef="ParallelGateway_3" targetRef="resetCallbackRequest" />
161 <bpmn2:subProcess id="errorHandlingSubProcess" name="Error Handling Sub Process" triggeredByEvent="true">
162 <bpmn2:startEvent id="catchErrors" name="Catch">
163 <bpmn2:outgoing>SequenceFlow_22</bpmn2:outgoing>
164 <bpmn2:errorEventDefinition id="_ErrorEventDefinition_78" errorRef="Error_3" />
165 </bpmn2:startEvent>
166 <bpmn2:sequenceFlow id="SequenceFlow_22" name="" sourceRef="catchErrors" targetRef="assignError" />
167 <bpmn2:scriptTask id="assignError" name="Assign Error" scriptFormat="groovy">
168 <bpmn2:incoming>SequenceFlow_22</bpmn2:incoming>
169 <bpmn2:outgoing>SequenceFlow_27</bpmn2:outgoing>
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -0500170 <bpmn2:script><![CDATA[import org.onap.so.bpmn.common.scripts.*
xg353yb6b7bef2017-04-11 13:30:42 +0200171def sdnc= new SDNCAdapter()
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -0500172sdnc.assignError(execution)]]></bpmn2:script>
xg353yb6b7bef2017-04-11 13:30:42 +0200173 </bpmn2:scriptTask>
174 <bpmn2:sequenceFlow id="SequenceFlow_27" name="" sourceRef="assignError" targetRef="EndEvent_5" />
175 <bpmn2:endEvent id="EndEvent_5">
176 <bpmn2:incoming>SequenceFlow_27</bpmn2:incoming>
177 </bpmn2:endEvent>
178 </bpmn2:subProcess>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700179 <bpmn2:exclusiveGateway id="ExclusiveGateway_2" name="Service Config Activate?" default="SequenceFlow_23">
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400180 <bpmn2:incoming>SequenceFlow_21</bpmn2:incoming>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700181 <bpmn2:outgoing>SequenceFlow_4</bpmn2:outgoing>
182 <bpmn2:outgoing>SequenceFlow_23</bpmn2:outgoing>
183 </bpmn2:exclusiveGateway>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400184 <bpmn2:sequenceFlow id="SequenceFlow_4" name="Yes" sourceRef="ExclusiveGateway_2" targetRef="SetInterimNotificationFlag">
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -0500185 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("serviceConfigActivate")==true}]]></bpmn2:conditionExpression>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700186 </bpmn2:sequenceFlow>
187 <bpmn2:sequenceFlow id="SequenceFlow_23" name="No" sourceRef="ExclusiveGateway_2" targetRef="EndEvent_1" />
xg353yb6b7bef2017-04-11 13:30:42 +0200188 <bpmn2:endEvent id="EndEvent_1">
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700189 <bpmn2:incoming>SequenceFlow_23</bpmn2:incoming>
xg353yb6b7bef2017-04-11 13:30:42 +0200190 </bpmn2:endEvent>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700191 <bpmn2:boundaryEvent id="BoundaryEvent_1" name="Boundary Event" cancelActivity="false" attachedToRef="SubProcess">
192 <bpmn2:documentation>this is a non interupting time to prevent an Optimistic Locking Exception if timer expires the same time we correlate a message</bpmn2:documentation>
193 <bpmn2:outgoing>SequenceFlow_0mzs1ze</bpmn2:outgoing>
194 <bpmn2:timerEventDefinition>
195 <bpmn2:timeDuration xsi:type="bpmn2:tFormalExpression">${sdncTimeoutValue}</bpmn2:timeDuration>
196 </bpmn2:timerEventDefinition>
197 </bpmn2:boundaryEvent>
198 <bpmn2:endEvent id="endEventException" name="Timeout Exception">
199 <bpmn2:incoming>SequenceFlow_19</bpmn2:incoming>
200 <bpmn2:terminateEventDefinition />
201 </bpmn2:endEvent>
202 <bpmn2:sequenceFlow id="SequenceFlow_0mzs1ze" sourceRef="BoundaryEvent_1" targetRef="setTimeoutEx" />
203 <bpmn2:sequenceFlow id="SequenceFlow_11ah5pw" sourceRef="setTimeoutEx" targetRef="returnWorkflowResult" />
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400204 <bpmn2:callActivity id="CallActivity_11xgv33" name="Call Notification Service" calledElement="${UrnPropertiesReader.getVariable(&#34;mso.workflow.notification.name&#34;, execution)}">
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700205 <bpmn2:extensionElements>
206 <camunda:in source="mso-request-id" target="mso-request-id" />
207 <camunda:in source="mso-service-instance-id" target="mso-service-instance-id" />
208 <camunda:in variables="all" />
209 <camunda:out variables="all" />
210 </bpmn2:extensionElements>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400211 <bpmn2:incoming>SequenceFlow_193cb6p</bpmn2:incoming>
212 <bpmn2:outgoing>SequenceFlow_1em7gys</bpmn2:outgoing>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700213 </bpmn2:callActivity>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400214 <bpmn2:scriptTask id="SetInterimNotificationFlag" name="Set Interim Notification Flag" scriptFormat="groovy">
215 <bpmn2:incoming>SequenceFlow_4</bpmn2:incoming>
216 <bpmn2:outgoing>SequenceFlow_193cb6p</bpmn2:outgoing>
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -0500217 <bpmn2:script><![CDATA[execution.setVariable("SDNCA_InterimNotify", true)]]></bpmn2:script>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400218 </bpmn2:scriptTask>
219 <bpmn2:sequenceFlow id="SequenceFlow_193cb6p" sourceRef="SetInterimNotificationFlag" targetRef="CallActivity_11xgv33" />
220 <bpmn2:endEvent id="EndEvent_18rq0b6">
221 <bpmn2:incoming>SequenceFlow_1em7gys</bpmn2:incoming>
222 </bpmn2:endEvent>
223 <bpmn2:sequenceFlow id="SequenceFlow_1em7gys" sourceRef="CallActivity_11xgv33" targetRef="EndEvent_18rq0b6" />
224 <bpmn2:scriptTask id="ResetInterimNotificationFlag" name="Reset Interim Notification Flag" scriptFormat="groovy">
225 <bpmn2:incoming>Done</bpmn2:incoming>
226 <bpmn2:outgoing>SequenceFlow_1w1za5m</bpmn2:outgoing>
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -0500227 <bpmn2:script><![CDATA[execution.setVariable("SDNCA_InterimNotify", false)]]></bpmn2:script>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400228 </bpmn2:scriptTask>
229 <bpmn2:sequenceFlow id="SequenceFlow_1w1za5m" sourceRef="ResetInterimNotificationFlag" targetRef="toggleSuccessIndicator" />
Kalkere Ramesh, Sharan (sk720x)b3897d12018-12-10 12:00:37 -0500230 <bpmn2:subProcess id="SubProcess_1j2zu8s" name="Java Exception Handling Sub Process" triggeredByEvent="true">
231 <bpmn2:startEvent id="StartEvent_10rxj2o">
232 <bpmn2:outgoing>SequenceFlow_1cnxq0j</bpmn2:outgoing>
233 <bpmn2:errorEventDefinition errorRef="Error_2" camunda:errorCodeVariable="BPMN_javaExpCode" camunda:errorMessageVariable="BPMN_javaExpMsg" />
234 </bpmn2:startEvent>
235 <bpmn2:endEvent id="EndEvent_0tzire9">
236 <bpmn2:incoming>SequenceFlow_1j9sip1</bpmn2:incoming>
237 </bpmn2:endEvent>
238 <bpmn2:sequenceFlow id="SequenceFlow_1cnxq0j" sourceRef="StartEvent_10rxj2o" targetRef="Task_1damf23" />
239 <bpmn2:sequenceFlow id="SequenceFlow_1j9sip1" sourceRef="Task_1damf23" targetRef="EndEvent_0tzire9" />
240 <bpmn2:scriptTask id="Task_1damf23" name="Process Error" scriptFormat="groovy">
241 <bpmn2:incoming>SequenceFlow_1cnxq0j</bpmn2:incoming>
242 <bpmn2:outgoing>SequenceFlow_1j9sip1</bpmn2:outgoing>
243 <bpmn2:script><![CDATA[import org.onap.so.bpmn.common.scripts.*
244ExceptionUtil ex = new ExceptionUtil()
245ex.processJavaException(execution)]]></bpmn2:script>
246 </bpmn2:scriptTask>
247 </bpmn2:subProcess>
xg353yb6b7bef2017-04-11 13:30:42 +0200248 </bpmn2:process>
249 <bpmn2:message id="Message_1" name="sdncAdapterWorkflowRequest" />
250 <bpmn2:message id="Message_2" name="sdncAdapterCallbackRequest" />
251 <bpmn2:error id="Error_3" name="MSO Workflow Exception" errorCode="MSOWorkflowException" />
252 <bpmn2:signal id="Signal_1" name="InterimStatus" />
253 <bpmn2:error id="Error_2" name="Java Lang Exception" errorCode="java.lang.Exception" />
254 <bpmndi:BPMNDiagram id="BPMNDiagram_1">
255 <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="sdncAdapter">
256 <bpmndi:BPMNShape id="_BPMNShape_StartEvent_33" bpmnElement="SDNCAdapter_Start">
257 <dc:Bounds x="111" y="161" width="36" height="36" />
258 <bpmndi:BPMNLabel>
259 <dc:Bounds x="72" y="202" width="115" height="22" />
260 </bpmndi:BPMNLabel>
261 </bpmndi:BPMNShape>
262 <bpmndi:BPMNShape id="_BPMNShape_ServiceTask_62" bpmnElement="invokeSDNCAdapter">
263 <dc:Bounds x="342" y="139" width="100" height="80" />
264 </bpmndi:BPMNShape>
265 <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_29" bpmnElement="isResponseOK" isMarkerVisible="true">
266 <dc:Bounds x="519" y="153" width="50" height="50" />
267 <bpmndi:BPMNLabel>
268 <dc:Bounds x="569" y="182" width="106" height="22" />
269 </bpmndi:BPMNLabel>
270 </bpmndi:BPMNShape>
271 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_64" bpmnElement="endEventFlow">
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400272 <dc:Bounds x="1699" y="366" width="36" height="36" />
xg353yb6b7bef2017-04-11 13:30:42 +0200273 <bpmndi:BPMNLabel>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400274 <dc:Bounds x="1743" y="373" width="77" height="13" />
xg353yb6b7bef2017-04-11 13:30:42 +0200275 </bpmndi:BPMNLabel>
276 </bpmndi:BPMNShape>
277 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_65" bpmnElement="badResponseEndFlow">
278 <dc:Bounds x="762" y="104" width="36" height="36" />
279 <bpmndi:BPMNLabel>
280 <dc:Bounds x="804" y="111" width="149" height="22" />
281 </bpmndi:BPMNLabel>
282 </bpmndi:BPMNShape>
283 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_5" bpmnElement="badSynchronousResponse" sourceElement="_BPMNShape_ExclusiveGateway_29" targetElement="_BPMNShape_ScriptTask_24">
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -0500284 <di:waypoint xsi:type="dc:Point" x="544" y="153" />
285 <di:waypoint xsi:type="dc:Point" x="544" y="122" />
286 <di:waypoint xsi:type="dc:Point" x="600" y="122" />
xg353yb6b7bef2017-04-11 13:30:42 +0200287 <bpmndi:BPMNLabel>
288 <dc:Bounds x="441" y="99" width="164" height="22" />
289 </bpmndi:BPMNLabel>
290 </bpmndi:BPMNEdge>
291 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_1" bpmnElement="SequenceFlow_1" sourceElement="_BPMNShape_StartEvent_33" targetElement="_BPMNShape_ScriptTask_3">
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -0500292 <di:waypoint xsi:type="dc:Point" x="147" y="179" />
293 <di:waypoint xsi:type="dc:Point" x="194" y="179" />
xg353yb6b7bef2017-04-11 13:30:42 +0200294 <bpmndi:BPMNLabel>
295 <dc:Bounds x="171" y="179" width="0" height="0" />
296 </bpmndi:BPMNLabel>
297 </bpmndi:BPMNEdge>
298 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_4" bpmnElement="goodSynchronousResponse" sourceElement="_BPMNShape_ExclusiveGateway_29" targetElement="_BPMNShape_ScriptTask_27">
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -0500299 <di:waypoint xsi:type="dc:Point" x="544" y="203" />
300 <di:waypoint xsi:type="dc:Point" x="544" y="246" />
xg353yb6b7bef2017-04-11 13:30:42 +0200301 <bpmndi:BPMNLabel>
302 <dc:Bounds x="459" y="208" width="172" height="22" />
303 </bpmndi:BPMNLabel>
304 </bpmndi:BPMNEdge>
305 <bpmndi:BPMNShape id="_BPMNShape_ServiceTask_68" bpmnElement="returnWorkflowResult">
306 <dc:Bounds x="1104" y="237" width="100" height="80" />
307 </bpmndi:BPMNShape>
308 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_3" bpmnElement="processMessage">
309 <dc:Bounds x="194" y="139" width="100" height="80" />
310 </bpmndi:BPMNShape>
311 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_8" bpmnElement="SequenceFlow_8" sourceElement="_BPMNShape_ScriptTask_3" targetElement="_BPMNShape_ServiceTask_62">
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -0500312 <di:waypoint xsi:type="dc:Point" x="294" y="179" />
313 <di:waypoint xsi:type="dc:Point" x="342" y="179" />
xg353yb6b7bef2017-04-11 13:30:42 +0200314 <bpmndi:BPMNLabel>
315 <dc:Bounds x="300" y="153" width="30" height="22" />
316 </bpmndi:BPMNLabel>
317 </bpmndi:BPMNEdge>
318 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_14" bpmnElement="SequenceFlow_14" sourceElement="_BPMNShape_ServiceTask_68" targetElement="_BPMNShape_ExclusiveGateway_53">
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -0500319 <di:waypoint xsi:type="dc:Point" x="1204" y="277" />
320 <di:waypoint xsi:type="dc:Point" x="1248" y="276" />
xg353yb6b7bef2017-04-11 13:30:42 +0200321 <bpmndi:BPMNLabel>
322 <dc:Bounds x="1211" y="251" width="37" height="22" />
323 </bpmndi:BPMNLabel>
324 </bpmndi:BPMNEdge>
325 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_15" bpmnElement="SequenceFlow_15" sourceElement="_BPMNShape_ServiceTask_62" targetElement="_BPMNShape_ExclusiveGateway_29">
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -0500326 <di:waypoint xsi:type="dc:Point" x="442" y="179" />
327 <di:waypoint xsi:type="dc:Point" x="480" y="179" />
328 <di:waypoint xsi:type="dc:Point" x="480" y="178" />
329 <di:waypoint xsi:type="dc:Point" x="519" y="178" />
xg353yb6b7bef2017-04-11 13:30:42 +0200330 <bpmndi:BPMNLabel>
331 <dc:Bounds x="468" y="153" width="37" height="22" />
332 </bpmndi:BPMNLabel>
333 </bpmndi:BPMNEdge>
334 <bpmndi:BPMNShape id="_BPMNShape_IntermediateCatchEvent_16" bpmnElement="IntermediateCatchEvent">
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700335 <dc:Bounds x="781" y="257" width="36" height="36" />
xg353yb6b7bef2017-04-11 13:30:42 +0200336 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700337 <dc:Bounds x="739" y="292" width="60" height="12" />
xg353yb6b7bef2017-04-11 13:30:42 +0200338 </bpmndi:BPMNLabel>
339 </bpmndi:BPMNShape>
340 <bpmndi:BPMNShape id="_BPMNShape_SubProcess_11" bpmnElement="SubProcess" isExpanded="true">
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700341 <dc:Bounds x="619" y="209" width="379" height="137" />
xg353yb6b7bef2017-04-11 13:30:42 +0200342 </bpmndi:BPMNShape>
343 <bpmndi:BPMNShape id="_BPMNShape_StartEvent_38" bpmnElement="StartEvent">
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700344 <dc:Bounds x="655" y="257" width="36" height="36" />
xg353yb6b7bef2017-04-11 13:30:42 +0200345 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700346 <dc:Bounds x="630" y="292" width="54" height="12" />
xg353yb6b7bef2017-04-11 13:30:42 +0200347 </bpmndi:BPMNLabel>
348 </bpmndi:BPMNShape>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700349 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_9" bpmnElement="SequenceFlow_9" sourceElement="_BPMNShape_SubProcess_11">
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -0500350 <di:waypoint xsi:type="dc:Point" x="998" y="278" />
351 <di:waypoint xsi:type="dc:Point" x="1104" y="277" />
xg353yb6b7bef2017-04-11 13:30:42 +0200352 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700353 <dc:Bounds x="1051" y="262.5" width="0" height="0" />
xg353yb6b7bef2017-04-11 13:30:42 +0200354 </bpmndi:BPMNLabel>
355 </bpmndi:BPMNEdge>
356 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_24" bpmnElement="setBadResponse">
357 <dc:Bounds x="600" y="82" width="100" height="80" />
358 </bpmndi:BPMNShape>
359 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_3" bpmnElement="Exception" sourceElement="_BPMNShape_ScriptTask_24" targetElement="_BPMNShape_EndEvent_65">
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -0500360 <di:waypoint xsi:type="dc:Point" x="700" y="122" />
361 <di:waypoint xsi:type="dc:Point" x="762" y="122" />
xg353yb6b7bef2017-04-11 13:30:42 +0200362 <bpmndi:BPMNLabel>
363 <dc:Bounds x="699" y="99" width="64" height="22" />
364 </bpmndi:BPMNLabel>
365 </bpmndi:BPMNEdge>
366 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_25" bpmnElement="setTimeoutEx">
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700367 <dc:Bounds x="941" y="372" width="100" height="80" />
xg353yb6b7bef2017-04-11 13:30:42 +0200368 </bpmndi:BPMNShape>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700369 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_16" bpmnElement="SequenceFlow_16" sourceElement="_BPMNShape_IntermediateCatchEvent_16">
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -0500370 <di:waypoint xsi:type="dc:Point" x="817" y="275" />
371 <di:waypoint xsi:type="dc:Point" x="926" y="275" />
xg353yb6b7bef2017-04-11 13:30:42 +0200372 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700373 <dc:Bounds x="872" y="260" width="0" height="0" />
xg353yb6b7bef2017-04-11 13:30:42 +0200374 </bpmndi:BPMNLabel>
375 </bpmndi:BPMNEdge>
xg353yb6b7bef2017-04-11 13:30:42 +0200376 <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_53" bpmnElement="timeoutError" isMarkerVisible="true">
377 <dc:Bounds x="1248" y="251" width="50" height="50" />
378 <bpmndi:BPMNLabel>
379 <dc:Bounds x="1300" y="266" width="118" height="22" />
380 </bpmndi:BPMNLabel>
381 </bpmndi:BPMNShape>
382 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_17" bpmnElement="noTimeoutError" sourceElement="_BPMNShape_ExclusiveGateway_53" targetElement="_BPMNShape_ExclusiveGateway_54">
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -0500383 <di:waypoint xsi:type="dc:Point" x="1273" y="301" />
384 <di:waypoint xsi:type="dc:Point" x="1273" y="359" />
xg353yb6b7bef2017-04-11 13:30:42 +0200385 <bpmndi:BPMNLabel>
386 <dc:Bounds x="1280" y="324" width="72" height="22" />
387 </bpmndi:BPMNLabel>
388 </bpmndi:BPMNEdge>
389 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_19" bpmnElement="SequenceFlow_19" sourceElement="_BPMNShape_ExclusiveGateway_53" targetElement="_BPMNShape_ScriptTask_25">
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -0500390 <di:waypoint xsi:type="dc:Point" x="1273" y="251" />
391 <di:waypoint xsi:type="dc:Point" x="1273" y="95" />
392 <di:waypoint xsi:type="dc:Point" x="1560" y="95" />
xg353yb6b7bef2017-04-11 13:30:42 +0200393 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700394 <dc:Bounds x="1301" y="169.45283018867923" width="39" height="12" />
xg353yb6b7bef2017-04-11 13:30:42 +0200395 </bpmndi:BPMNLabel>
396 </bpmndi:BPMNEdge>
397 <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_54" bpmnElement="ExclusiveGateway_1" isMarkerVisible="true">
398 <dc:Bounds x="1248" y="359" width="50" height="50" />
399 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700400 <dc:Bounds x="1194" y="372" width="57" height="24" />
xg353yb6b7bef2017-04-11 13:30:42 +0200401 </bpmndi:BPMNLabel>
402 </bpmndi:BPMNShape>
403 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_7" bpmnElement="Done" sourceElement="_BPMNShape_ExclusiveGateway_54" targetElement="_BPMNShape_ScriptTask_247">
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -0500404 <di:waypoint xsi:type="dc:Point" x="1298" y="384" />
405 <di:waypoint xsi:type="dc:Point" x="1386" y="385" />
xg353yb6b7bef2017-04-11 13:30:42 +0200406 <bpmndi:BPMNLabel>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400407 <dc:Bounds x="1322" y="384.219838851959" width="27" height="13" />
xg353yb6b7bef2017-04-11 13:30:42 +0200408 </bpmndi:BPMNLabel>
409 </bpmndi:BPMNEdge>
410 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_27" bpmnElement="resetCallbackRequest">
411 <dc:Bounds x="494" y="246" width="100" height="80" />
412 </bpmndi:BPMNShape>
413 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_12" bpmnElement="SequenceFlow_2" sourceElement="_BPMNShape_ScriptTask_27" targetElement="_BPMNShape_SubProcess_11">
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -0500414 <di:waypoint xsi:type="dc:Point" x="594" y="286" />
415 <di:waypoint xsi:type="dc:Point" x="607" y="286" />
416 <di:waypoint xsi:type="dc:Point" x="607" y="275" />
417 <di:waypoint xsi:type="dc:Point" x="619" y="275" />
xg353yb6b7bef2017-04-11 13:30:42 +0200418 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700419 <dc:Bounds x="622" y="280.5" width="0" height="0" />
xg353yb6b7bef2017-04-11 13:30:42 +0200420 </bpmndi:BPMNLabel>
421 </bpmndi:BPMNEdge>
xg353yb6b7bef2017-04-11 13:30:42 +0200422 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_38" bpmnElement="SequenceFlow_30" sourceElement="_BPMNShape_ExclusiveGateway_54" targetElement="_BPMNShape_ParallelGateway_14">
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -0500423 <di:waypoint xsi:type="dc:Point" x="1273" y="409" />
424 <di:waypoint xsi:type="dc:Point" x="1273" y="467" />
xg353yb6b7bef2017-04-11 13:30:42 +0200425 <bpmndi:BPMNLabel>
426 <dc:Bounds x="1273" y="423" width="60" height="22" />
427 </bpmndi:BPMNLabel>
428 </bpmndi:BPMNEdge>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700429 <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_55" bpmnElement="ExclusiveGateway_2" isMarkerVisible="true">
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400430 <dc:Bounds x="1248" y="552" width="50" height="50" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700431 <bpmndi:BPMNLabel>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400432 <dc:Bounds x="1141" y="567" width="74" height="25" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700433 </bpmndi:BPMNLabel>
434 </bpmndi:BPMNShape>
435 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_13" bpmnElement="SequenceFlow_4" sourceElement="_BPMNShape_ExclusiveGateway_55" targetElement="CallActivity_11xgv33_di">
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -0500436 <di:waypoint xsi:type="dc:Point" x="1273" y="602" />
437 <di:waypoint xsi:type="dc:Point" x="1273" y="664" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700438 <bpmndi:BPMNLabel>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400439 <dc:Bounds x="1237" y="635.9906427957554" width="18" height="13" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700440 </bpmndi:BPMNLabel>
441 </bpmndi:BPMNEdge>
xg353yb6b7bef2017-04-11 13:30:42 +0200442 <bpmndi:BPMNShape id="_BPMNShape_ParallelGateway_14" bpmnElement="ParallelGateway_3">
443 <dc:Bounds x="1248" y="467" width="50" height="50" />
444 <bpmndi:BPMNLabel>
445 <dc:Bounds x="1273" y="522" width="0" height="0" />
446 </bpmndi:BPMNLabel>
447 </bpmndi:BPMNShape>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400448 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_28" bpmnElement="SequenceFlow_21" sourceElement="_BPMNShape_ParallelGateway_14">
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -0500449 <di:waypoint xsi:type="dc:Point" x="1272" y="516" />
450 <di:waypoint xsi:type="dc:Point" x="1273" y="552" />
xg353yb6b7bef2017-04-11 13:30:42 +0200451 <bpmndi:BPMNLabel>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400452 <dc:Bounds x="1273" y="519" width="0" height="0" />
xg353yb6b7bef2017-04-11 13:30:42 +0200453 </bpmndi:BPMNLabel>
454 </bpmndi:BPMNEdge>
455 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_96" bpmnElement="EndEvent_1">
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400456 <dc:Bounds x="1440" y="559" width="36" height="36" />
xg353yb6b7bef2017-04-11 13:30:42 +0200457 <bpmndi:BPMNLabel>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400458 <dc:Bounds x="1458" y="600" width="0" height="0" />
xg353yb6b7bef2017-04-11 13:30:42 +0200459 </bpmndi:BPMNLabel>
460 </bpmndi:BPMNShape>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700461 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_30" bpmnElement="SequenceFlow_23" sourceElement="_BPMNShape_ExclusiveGateway_55" targetElement="_BPMNShape_EndEvent_96">
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -0500462 <di:waypoint xsi:type="dc:Point" x="1298" y="577" />
463 <di:waypoint xsi:type="dc:Point" x="1330" y="577" />
464 <di:waypoint xsi:type="dc:Point" x="1440" y="577" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700465 <bpmndi:BPMNLabel>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400466 <dc:Bounds x="1309" y="590.5" width="14" height="13" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700467 </bpmndi:BPMNLabel>
468 </bpmndi:BPMNEdge>
xg353yb6b7bef2017-04-11 13:30:42 +0200469 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_33" bpmnElement="SequenceFlow_26" sourceElement="_BPMNShape_ParallelGateway_14" targetElement="_BPMNShape_ScriptTask_27">
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -0500470 <di:waypoint xsi:type="dc:Point" x="1248" y="492" />
471 <di:waypoint xsi:type="dc:Point" x="544" y="492" />
472 <di:waypoint xsi:type="dc:Point" x="544" y="326" />
xg353yb6b7bef2017-04-11 13:30:42 +0200473 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700474 <dc:Bounds x="782" y="467" width="73" height="48" />
xg353yb6b7bef2017-04-11 13:30:42 +0200475 </bpmndi:BPMNLabel>
476 </bpmndi:BPMNEdge>
477 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_247" bpmnElement="toggleSuccessIndicator">
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400478 <dc:Bounds x="1540" y="344" width="100" height="80" />
xg353yb6b7bef2017-04-11 13:30:42 +0200479 </bpmndi:BPMNShape>
480 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_26" bpmnElement="SequenceFlow_17" sourceElement="_BPMNShape_ScriptTask_247" targetElement="_BPMNShape_EndEvent_64">
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -0500481 <di:waypoint xsi:type="dc:Point" x="1640" y="384" />
482 <di:waypoint xsi:type="dc:Point" x="1699" y="384" />
xg353yb6b7bef2017-04-11 13:30:42 +0200483 <bpmndi:BPMNLabel>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400484 <dc:Bounds x="1670" y="369" width="0" height="0" />
xg353yb6b7bef2017-04-11 13:30:42 +0200485 </bpmndi:BPMNLabel>
486 </bpmndi:BPMNEdge>
487 <bpmndi:BPMNShape id="_BPMNShape_SubProcess_19" bpmnElement="errorHandlingSubProcess" isExpanded="true">
Kalkere Ramesh, Sharan (sk720x)b3897d12018-12-10 12:00:37 -0500488 <dc:Bounds x="250" y="598" width="353" height="193" />
xg353yb6b7bef2017-04-11 13:30:42 +0200489 </bpmndi:BPMNShape>
490 <bpmndi:BPMNShape id="_BPMNShape_StartEvent_63" bpmnElement="catchErrors">
Kalkere Ramesh, Sharan (sk720x)b3897d12018-12-10 12:00:37 -0500491 <dc:Bounds x="285" y="677" width="36" height="36" />
xg353yb6b7bef2017-04-11 13:30:42 +0200492 <bpmndi:BPMNLabel>
Kalkere Ramesh, Sharan (sk720x)b3897d12018-12-10 12:00:37 -0500493 <dc:Bounds x="288" y="718" width="29" height="12" />
xg353yb6b7bef2017-04-11 13:30:42 +0200494 </bpmndi:BPMNLabel>
495 </bpmndi:BPMNShape>
496 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_213" bpmnElement="EndEvent_5">
Kalkere Ramesh, Sharan (sk720x)b3897d12018-12-10 12:00:37 -0500497 <dc:Bounds x="525" y="677" width="36" height="36" />
xg353yb6b7bef2017-04-11 13:30:42 +0200498 <bpmndi:BPMNLabel>
Kalkere Ramesh, Sharan (sk720x)b3897d12018-12-10 12:00:37 -0500499 <dc:Bounds x="498" y="718" width="90" height="0" />
xg353yb6b7bef2017-04-11 13:30:42 +0200500 </bpmndi:BPMNLabel>
501 </bpmndi:BPMNShape>
502 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_249" bpmnElement="assignError">
Kalkere Ramesh, Sharan (sk720x)b3897d12018-12-10 12:00:37 -0500503 <dc:Bounds x="369" y="655" width="100" height="80" />
xg353yb6b7bef2017-04-11 13:30:42 +0200504 </bpmndi:BPMNShape>
505 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_29" bpmnElement="SequenceFlow_22" sourceElement="_BPMNShape_StartEvent_63" targetElement="_BPMNShape_ScriptTask_249">
Kalkere Ramesh, Sharan (sk720x)b3897d12018-12-10 12:00:37 -0500506 <di:waypoint xsi:type="dc:Point" x="321" y="695" />
507 <di:waypoint xsi:type="dc:Point" x="369" y="695" />
xg353yb6b7bef2017-04-11 13:30:42 +0200508 <bpmndi:BPMNLabel>
Kalkere Ramesh, Sharan (sk720x)b3897d12018-12-10 12:00:37 -0500509 <dc:Bounds x="306" y="695" width="90" height="0" />
xg353yb6b7bef2017-04-11 13:30:42 +0200510 </bpmndi:BPMNLabel>
511 </bpmndi:BPMNEdge>
512 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_34" bpmnElement="SequenceFlow_27" sourceElement="_BPMNShape_ScriptTask_249" targetElement="_BPMNShape_EndEvent_213">
Kalkere Ramesh, Sharan (sk720x)b3897d12018-12-10 12:00:37 -0500513 <di:waypoint xsi:type="dc:Point" x="469" y="695" />
514 <di:waypoint xsi:type="dc:Point" x="525" y="695" />
xg353yb6b7bef2017-04-11 13:30:42 +0200515 <bpmndi:BPMNLabel>
Kalkere Ramesh, Sharan (sk720x)b3897d12018-12-10 12:00:37 -0500516 <dc:Bounds x="452" y="695" width="90" height="0" />
xg353yb6b7bef2017-04-11 13:30:42 +0200517 </bpmndi:BPMNLabel>
518 </bpmndi:BPMNEdge>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700519 <bpmndi:BPMNEdge id="SequenceFlow_1eciucn_di" bpmnElement="SequenceFlow_1eciucn">
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -0500520 <di:waypoint xsi:type="dc:Point" x="691" y="275" />
521 <di:waypoint xsi:type="dc:Point" x="781" y="275" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700522 <bpmndi:BPMNLabel>
523 <dc:Bounds x="736" y="260" width="0" height="0" />
524 </bpmndi:BPMNLabel>
525 </bpmndi:BPMNEdge>
526 <bpmndi:BPMNShape id="BoundaryEvent_1e5qjpm_di" bpmnElement="BoundaryEvent_1">
527 <dc:Bounds x="782" y="328" width="36" height="36" />
528 <bpmndi:BPMNLabel>
529 <dc:Bounds x="715" y="361" width="78" height="12" />
530 </bpmndi:BPMNLabel>
531 </bpmndi:BPMNShape>
532 <bpmndi:BPMNShape id="EndEvent_0vl0pvg_di" bpmnElement="endEventException">
533 <dc:Bounds x="1560" y="77" width="36" height="36" />
534 <bpmndi:BPMNLabel>
535 <dc:Bounds x="1607" y="84" width="90" height="12" />
536 </bpmndi:BPMNLabel>
537 </bpmndi:BPMNShape>
538 <bpmndi:BPMNEdge id="SequenceFlow_0mzs1ze_di" bpmnElement="SequenceFlow_0mzs1ze">
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -0500539 <di:waypoint xsi:type="dc:Point" x="800" y="364" />
540 <di:waypoint xsi:type="dc:Point" x="800" y="412" />
541 <di:waypoint xsi:type="dc:Point" x="941" y="412" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700542 <bpmndi:BPMNLabel>
543 <dc:Bounds x="815" y="388" width="0" height="0" />
544 </bpmndi:BPMNLabel>
545 </bpmndi:BPMNEdge>
546 <bpmndi:BPMNEdge id="SequenceFlow_11ah5pw_di" bpmnElement="SequenceFlow_11ah5pw">
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -0500547 <di:waypoint xsi:type="dc:Point" x="1041" y="412" />
548 <di:waypoint xsi:type="dc:Point" x="1154" y="412" />
549 <di:waypoint xsi:type="dc:Point" x="1154" y="317" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700550 <bpmndi:BPMNLabel>
551 <dc:Bounds x="1098" y="397" width="0" height="0" />
552 </bpmndi:BPMNLabel>
553 </bpmndi:BPMNEdge>
554 <bpmndi:BPMNShape id="EndEvent_0xhvk12_di" bpmnElement="eEndEventSubprocess">
555 <dc:Bounds x="926" y="257" width="36" height="36" />
556 <bpmndi:BPMNLabel>
557 <dc:Bounds x="905" y="292" width="59" height="24" />
558 </bpmndi:BPMNLabel>
559 </bpmndi:BPMNShape>
560 <bpmndi:BPMNShape id="CallActivity_11xgv33_di" bpmnElement="CallActivity_11xgv33">
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400561 <dc:Bounds x="1223" y="795" width="100" height="80" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700562 </bpmndi:BPMNShape>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400563 <bpmndi:BPMNShape id="ScriptTask_1vhiyz5_di" bpmnElement="SetInterimNotificationFlag">
564 <dc:Bounds x="1223" y="666" width="100" height="80" />
565 </bpmndi:BPMNShape>
566 <bpmndi:BPMNEdge id="SequenceFlow_193cb6p_di" bpmnElement="SequenceFlow_193cb6p">
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -0500567 <di:waypoint xsi:type="dc:Point" x="1273" y="746" />
568 <di:waypoint xsi:type="dc:Point" x="1273" y="795" />
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400569 <bpmndi:BPMNLabel>
570 <dc:Bounds x="1288" y="770.5" width="0" height="0" />
571 </bpmndi:BPMNLabel>
572 </bpmndi:BPMNEdge>
573 <bpmndi:BPMNShape id="EndEvent_18rq0b6_di" bpmnElement="EndEvent_18rq0b6">
574 <dc:Bounds x="1255.3117870722433" y="919.4537389100127" width="36" height="36" />
575 <bpmndi:BPMNLabel>
576 <dc:Bounds x="1274" y="955.4537389100127" width="0" height="0" />
577 </bpmndi:BPMNLabel>
578 </bpmndi:BPMNShape>
579 <bpmndi:BPMNEdge id="SequenceFlow_1em7gys_di" bpmnElement="SequenceFlow_1em7gys">
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -0500580 <di:waypoint xsi:type="dc:Point" x="1273" y="875" />
581 <di:waypoint xsi:type="dc:Point" x="1273" y="920" />
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400582 <bpmndi:BPMNLabel>
583 <dc:Bounds x="1288" y="897.5" width="0" height="0" />
584 </bpmndi:BPMNLabel>
585 </bpmndi:BPMNEdge>
586 <bpmndi:BPMNShape id="ScriptTask_1ayq9yl_di" bpmnElement="ResetInterimNotificationFlag">
587 <dc:Bounds x="1386" y="345" width="100" height="80" />
588 </bpmndi:BPMNShape>
589 <bpmndi:BPMNEdge id="SequenceFlow_1w1za5m_di" bpmnElement="SequenceFlow_1w1za5m">
Kalkere Ramesh, Sharan (sk720x)c45553d2018-12-07 14:11:47 -0500590 <di:waypoint xsi:type="dc:Point" x="1486" y="385" />
591 <di:waypoint xsi:type="dc:Point" x="1540" y="384" />
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400592 <bpmndi:BPMNLabel>
593 <dc:Bounds x="1513" y="369.5" width="0" height="0" />
594 </bpmndi:BPMNLabel>
595 </bpmndi:BPMNEdge>
Kalkere Ramesh, Sharan (sk720x)b3897d12018-12-10 12:00:37 -0500596 <bpmndi:BPMNShape id="SubProcess_009jbzr_di" bpmnElement="SubProcess_1j2zu8s" isExpanded="true">
597 <dc:Bounds x="252" y="817" width="350" height="200" />
598 </bpmndi:BPMNShape>
599 <bpmndi:BPMNShape id="StartEvent_1cwwku2_di" bpmnElement="StartEvent_10rxj2o">
600 <dc:Bounds x="288" y="904" width="36" height="36" />
601 <bpmndi:BPMNLabel>
602 <dc:Bounds x="306" y="944" width="0" height="12" />
603 </bpmndi:BPMNLabel>
604 </bpmndi:BPMNShape>
605 <bpmndi:BPMNShape id="EndEvent_0tzire9_di" bpmnElement="EndEvent_0tzire9">
606 <dc:Bounds x="530" y="904" width="36" height="36" />
607 <bpmndi:BPMNLabel>
608 <dc:Bounds x="548" y="944" width="0" height="12" />
609 </bpmndi:BPMNLabel>
610 </bpmndi:BPMNShape>
611 <bpmndi:BPMNEdge id="SequenceFlow_1cnxq0j_di" bpmnElement="SequenceFlow_1cnxq0j">
612 <di:waypoint xsi:type="dc:Point" x="324" y="922" />
613 <di:waypoint xsi:type="dc:Point" x="378" y="922" />
614 <bpmndi:BPMNLabel>
615 <dc:Bounds x="351" y="901" width="0" height="12" />
616 </bpmndi:BPMNLabel>
617 </bpmndi:BPMNEdge>
618 <bpmndi:BPMNEdge id="SequenceFlow_1j9sip1_di" bpmnElement="SequenceFlow_1j9sip1">
619 <di:waypoint xsi:type="dc:Point" x="478" y="922" />
620 <di:waypoint xsi:type="dc:Point" x="530" y="922" />
621 <bpmndi:BPMNLabel>
622 <dc:Bounds x="504" y="901" width="0" height="12" />
623 </bpmndi:BPMNLabel>
624 </bpmndi:BPMNEdge>
625 <bpmndi:BPMNShape id="ScriptTask_1n6d3r0_di" bpmnElement="Task_1damf23">
626 <dc:Bounds x="378" y="882" width="100" height="80" />
627 </bpmndi:BPMNShape>
xg353yb6b7bef2017-04-11 13:30:42 +0200628 </bpmndi:BPMNPlane>
629 </bpmndi:BPMNDiagram>
630</bpmn2:definitions>