blob: e2da44d272f7021a01625466519dab8bff7d5eec [file] [log] [blame]
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -07001<?xml version="1.0" encoding="UTF-8"?>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -04002<bpmn2:definitions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bpmn2="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" id="_GraPIIyxEeWmdMDkx6Uftw" targetNamespace="http://camunda.org/schema/1.0/bpmn" exporter="Camunda Modeler" exporterVersion="1.13.1" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL BPMN20.xsd">
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -07003 <bpmn2:process id="SDNCAdapterRestV1" name="SDNCAdapterRestV1" isExecutable="true">
4 <bpmn2:scriptTask id="ScriptTask_2" name="Log Response" scriptFormat="groovy">
5 <bpmn2:incoming>SequenceFlow_3</bpmn2:incoming>
6 <bpmn2:outgoing>SequenceFlow_14</bpmn2:outgoing>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -04007 <bpmn2:script>import org.onap.so.bpmn.common.scripts.*
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -07008def sdncAdapterRestV1 = new SDNCAdapterRestV1()
9def statusCode = execution.getVariable('SDNCREST_sdncAdapterStatusCode')
10String response = String.valueOf(execution.getVariable('SDNCREST_sdncAdapterResponse'))
11def isDebugLogEnabled = execution.getVariable('isDebugLogEnabled')
12def processKey = sdncAdapterRestV1.getProcessKey(execution)
Benjamin, Max (mb388a)aaa93d42019-03-20 14:12:06 -040013sdncAdapterRestV1.getLogger().debug("{} received response from SDNCAdapter: statusCode= {} response={}", processKey, statusCode, (response.isEmpty() ? "" : "\n" + response))</bpmn2:script>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070014 </bpmn2:scriptTask>
15 <bpmn2:scriptTask id="ScriptTask_3" name="Workflow Exception (no connection)" scriptFormat="groovy">
16 <bpmn2:incoming>SequenceFlow_17</bpmn2:incoming>
17 <bpmn2:outgoing>SequenceFlow_35</bpmn2:outgoing>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040018 <bpmn2:script>import org.onap.so.bpmn.common.scripts.*
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070019def exceptionUtil = new ExceptionUtil()
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040020exceptionUtil.buildWorkflowException(execution, 5300, "Failed to communicate with SDNCAdapter")</bpmn2:script>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070021 </bpmn2:scriptTask>
22 <bpmn2:scriptTask id="ScriptTask_4" name="Workflow Exception (bad response)" scriptFormat="groovy">
23 <bpmn2:incoming>SequenceFlow_23</bpmn2:incoming>
24 <bpmn2:outgoing>SequenceFlow_36</bpmn2:outgoing>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040025 <bpmn2:script>import org.onap.so.bpmn.common.scripts.*
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070026
27String res = execution.getVariable('SDNCREST_sdncAdapterResponse')
28
29def sdncAdapterRestV1 = new SDNCAdapterRestV1()
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040030sdncAdapterRestV1.sdncAdapterBuildWorkflowException(execution, res)</bpmn2:script>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070031 </bpmn2:scriptTask>
32 <bpmn2:sequenceFlow id="SequenceFlow_14" name="" sourceRef="ScriptTask_2" targetRef="ExclusiveGateway_1" />
33 <bpmn2:exclusiveGateway id="ExclusiveGateway_1" default="SequenceFlow_23">
34 <bpmn2:incoming>SequenceFlow_14</bpmn2:incoming>
35 <bpmn2:outgoing>SequenceFlow_17</bpmn2:outgoing>
36 <bpmn2:outgoing>SequenceFlow_23</bpmn2:outgoing>
37 <bpmn2:outgoing>SequenceFlow_24</bpmn2:outgoing>
38 </bpmn2:exclusiveGateway>
39 <bpmn2:sequenceFlow id="SequenceFlow_17" name="404" sourceRef="ExclusiveGateway_1" targetRef="ScriptTask_3">
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040040 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression">#{execution.getVariable("SDNCREST_sdncAdapterStatusCode") == '404'}</bpmn2:conditionExpression>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070041 </bpmn2:sequenceFlow>
42 <bpmn2:sequenceFlow id="SequenceFlow_23" name="other" sourceRef="ExclusiveGateway_1" targetRef="ScriptTask_4" />
43 <bpmn2:sequenceFlow id="SequenceFlow_24" name="2xx" sourceRef="ExclusiveGateway_1" targetRef="SubProcess_2">
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040044 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression">#{execution.getVariable("SDNCREST_sdncAdapterStatusCode") == '200' || execution.getVariable("SDNCREST_sdncAdapterStatusCode") == '202'}</bpmn2:conditionExpression>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070045 </bpmn2:sequenceFlow>
46 <bpmn2:sequenceFlow id="SequenceFlow_35" name="" sourceRef="ScriptTask_3" targetRef="EndEvent_9" />
47 <bpmn2:endEvent id="EndEvent_9">
48 <bpmn2:incoming>SequenceFlow_35</bpmn2:incoming>
49 <bpmn2:errorEventDefinition id="_ErrorEventDefinition_22" errorRef="Error_1" />
50 </bpmn2:endEvent>
51 <bpmn2:endEvent id="EndEvent_10">
52 <bpmn2:incoming>SequenceFlow_36</bpmn2:incoming>
53 <bpmn2:errorEventDefinition id="_ErrorEventDefinition_23" errorRef="Error_1" />
54 </bpmn2:endEvent>
55 <bpmn2:sequenceFlow id="SequenceFlow_36" name="" sourceRef="ScriptTask_4" targetRef="EndEvent_10" />
56 <bpmn2:scriptTask id="ScriptTask_7" name="Send Request to SDNC Adapter" scriptFormat="groovy">
57 <bpmn2:incoming>SequenceFlow_2</bpmn2:incoming>
58 <bpmn2:outgoing>SequenceFlow_3</bpmn2:outgoing>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040059 <bpmn2:script>import org.onap.so.bpmn.common.scripts.*
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070060def sdncAdapterRestV1 = new SDNCAdapterRestV1()
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040061sdncAdapterRestV1.sendRequestToSDNCAdapter(execution)</bpmn2:script>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070062 </bpmn2:scriptTask>
63 <bpmn2:sequenceFlow id="SequenceFlow_3" name="" sourceRef="ScriptTask_7" targetRef="ScriptTask_2" />
64 <bpmn2:scriptTask id="ScriptTask_1" name="Pre-Process Request" scriptFormat="groovy">
65 <bpmn2:incoming>SequenceFlow_9</bpmn2:incoming>
66 <bpmn2:outgoing>SequenceFlow_2</bpmn2:outgoing>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040067 <bpmn2:script>import org.onap.so.bpmn.common.scripts.*
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070068def sdncAdapterRestV1 = new SDNCAdapterRestV1()
69sdncAdapterRestV1.preProcessRequest(execution)
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040070</bpmn2:script>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070071 </bpmn2:scriptTask>
72 <bpmn2:sequenceFlow id="SequenceFlow_2" name="" sourceRef="ScriptTask_1" targetRef="ScriptTask_7" />
73 <bpmn2:startEvent id="StartEvent_1" name="Start">
74 <bpmn2:outgoing>SequenceFlow_9</bpmn2:outgoing>
75 </bpmn2:startEvent>
76 <bpmn2:sequenceFlow id="SequenceFlow_9" name="" sourceRef="StartEvent_1" targetRef="ScriptTask_1" />
77 <bpmn2:scriptTask id="ScriptTask_5" name="Workflow Exception (timeout)" scriptFormat="groovy">
78 <bpmn2:incoming>SequenceFlow_27</bpmn2:incoming>
79 <bpmn2:outgoing>SequenceFlow_34</bpmn2:outgoing>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040080 <bpmn2:script>import org.onap.so.bpmn.common.scripts.*
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070081def exceptionUtil = new ExceptionUtil()
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040082exceptionUtil.buildWorkflowException(execution, 5320, "SDNCAdapter Callback Timeout Error")</bpmn2:script>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070083 </bpmn2:scriptTask>
84 <bpmn2:sequenceFlow id="SequenceFlow_34" name="" sourceRef="ScriptTask_5" targetRef="EndEvent_8" />
85 <bpmn2:endEvent id="EndEvent_8">
86 <bpmn2:incoming>SequenceFlow_34</bpmn2:incoming>
87 <bpmn2:errorEventDefinition id="_ErrorEventDefinition_21" errorRef="Error_1" />
88 </bpmn2:endEvent>
89 <bpmn2:scriptTask id="ScriptTask_setSuccess" name="Set Success Indicator and WorkflowResponse" scriptFormat="groovy">
90 <bpmn2:incoming>SequenceFlow_44</bpmn2:incoming>
91 <bpmn2:outgoing>SequenceFlow_1</bpmn2:outgoing>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040092 <bpmn2:script>import org.onap.so.bpmn.common.scripts.*
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070093def sdncAdapterRestV1 = new SDNCAdapterRestV1()
94sdncAdapterRestV1.setSuccessIndicator(execution, true)
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040095execution.setVariable('WorkflowResponse', sdncAdapterRestV1.getLastCallback(execution))</bpmn2:script>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070096 </bpmn2:scriptTask>
97 <bpmn2:sequenceFlow id="SequenceFlow_1" name="" sourceRef="ScriptTask_setSuccess" targetRef="EndEvent_6" />
98 <bpmn2:endEvent id="EndEvent_6" name="End">
99 <bpmn2:incoming>SequenceFlow_1</bpmn2:incoming>
100 </bpmn2:endEvent>
101 <bpmn2:boundaryEvent id="BoundaryEvent_1" name="Timeout" attachedToRef="SubProcess_2">
102 <bpmn2:outgoing>SequenceFlow_27</bpmn2:outgoing>
103 <bpmn2:timerEventDefinition id="TimerEventDefinition_1">
104 <bpmn2:timeDuration xsi:type="bpmn2:tFormalExpression">${SDNCREST_timeout}</bpmn2:timeDuration>
105 </bpmn2:timerEventDefinition>
106 </bpmn2:boundaryEvent>
107 <bpmn2:sequenceFlow id="SequenceFlow_27" name="" sourceRef="BoundaryEvent_1" targetRef="ScriptTask_5" />
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400108 <bpmn2:subProcess id="SubProcess_2" name="Wait for Callbacks" camunda:asyncAfter="true">
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700109 <bpmn2:incoming>SequenceFlow_24</bpmn2:incoming>
110 <bpmn2:outgoing>SequenceFlow_44</bpmn2:outgoing>
111 <bpmn2:scriptTask id="ScriptTask_6" name="Process Callback" scriptFormat="groovy">
112 <bpmn2:incoming>SequenceFlow_41</bpmn2:incoming>
113 <bpmn2:outgoing>SequenceFlow_42</bpmn2:outgoing>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400114 <bpmn2:script>import org.onap.so.bpmn.common.scripts.*
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700115def sdncAdapterRestV1 = new SDNCAdapterRestV1()
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400116sdncAdapterRestV1.processCallback(execution)</bpmn2:script>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700117 </bpmn2:scriptTask>
118 <bpmn2:sequenceFlow id="SequenceFlow_42" name="" sourceRef="ScriptTask_6" targetRef="ExclusiveGateway_3" />
119 <bpmn2:startEvent id="StartEvent_3">
120 <bpmn2:outgoing>SequenceFlow_25</bpmn2:outgoing>
121 </bpmn2:startEvent>
122 <bpmn2:sequenceFlow id="SequenceFlow_25" name="" sourceRef="StartEvent_3" targetRef="IntermediateCatchEvent_1" />
123 <bpmn2:exclusiveGateway id="ExclusiveGateway_7" name="ack-final-indicator" default="SequenceFlow_43">
124 <bpmn2:incoming>SequenceFlow_30</bpmn2:incoming>
125 <bpmn2:outgoing>SequenceFlow_39</bpmn2:outgoing>
126 <bpmn2:outgoing>SequenceFlow_43</bpmn2:outgoing>
127 </bpmn2:exclusiveGateway>
128 <bpmn2:sequenceFlow id="SequenceFlow_39" name="Y" sourceRef="ExclusiveGateway_7" targetRef="EndEvent_12">
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400129 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression">#{execution.getVariable('SDNCREST_ackFinalIndicator')=="Y"}</bpmn2:conditionExpression>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700130 </bpmn2:sequenceFlow>
131 <bpmn2:sequenceFlow id="SequenceFlow_43" name="N" sourceRef="ExclusiveGateway_7" targetRef="IntermediateCatchEvent_1" />
132 <bpmn2:exclusiveGateway id="ExclusiveGateway_3" name="Callback &#10;Exception?" default="SequenceFlow_30">
133 <bpmn2:incoming>SequenceFlow_42</bpmn2:incoming>
134 <bpmn2:outgoing>SequenceFlow_8</bpmn2:outgoing>
135 <bpmn2:outgoing>SequenceFlow_30</bpmn2:outgoing>
136 </bpmn2:exclusiveGateway>
137 <bpmn2:sequenceFlow id="SequenceFlow_8" name="yes" sourceRef="ExclusiveGateway_3" targetRef="EndEvent_3">
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400138 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression">#{execution.getVariable("WorkflowException") != null}</bpmn2:conditionExpression>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700139 </bpmn2:sequenceFlow>
140 <bpmn2:sequenceFlow id="SequenceFlow_30" name="no" sourceRef="ExclusiveGateway_3" targetRef="ExclusiveGateway_7" />
141 <bpmn2:intermediateCatchEvent id="IntermediateCatchEvent_1" name="Catch Event">
142 <bpmn2:incoming>SequenceFlow_25</bpmn2:incoming>
143 <bpmn2:incoming>SequenceFlow_43</bpmn2:incoming>
144 <bpmn2:outgoing>SequenceFlow_41</bpmn2:outgoing>
145 <bpmn2:messageEventDefinition id="MessageEventDefinition_1" messageRef="Message_1" />
146 </bpmn2:intermediateCatchEvent>
147 <bpmn2:sequenceFlow id="SequenceFlow_41" name="" sourceRef="IntermediateCatchEvent_1" targetRef="ScriptTask_6" />
148 <bpmn2:endEvent id="EndEvent_12">
149 <bpmn2:incoming>SequenceFlow_39</bpmn2:incoming>
150 </bpmn2:endEvent>
151 <bpmn2:endEvent id="EndEvent_3">
152 <bpmn2:incoming>SequenceFlow_8</bpmn2:incoming>
153 <bpmn2:errorEventDefinition id="_ErrorEventDefinition_90" errorRef="Error_1" />
154 </bpmn2:endEvent>
155 </bpmn2:subProcess>
156 <bpmn2:sequenceFlow id="SequenceFlow_44" name="" sourceRef="SubProcess_2" targetRef="ScriptTask_setSuccess" />
157 <bpmn2:subProcess id="SubProcess_1" name="Error Handling Sub Process" triggeredByEvent="true">
158 <bpmn2:startEvent id="StartEvent_2">
159 <bpmn2:outgoing>SequenceFlow_4</bpmn2:outgoing>
160 <bpmn2:errorEventDefinition id="_ErrorEventDefinition_89" />
161 </bpmn2:startEvent>
162 <bpmn2:sequenceFlow id="SequenceFlow_4" name="" sourceRef="StartEvent_2" targetRef="ScriptTask_8" />
163 <bpmn2:scriptTask id="ScriptTask_8" name="Process Error" scriptFormat="groovy">
164 <bpmn2:incoming>SequenceFlow_4</bpmn2:incoming>
165 <bpmn2:outgoing>SequenceFlow_11</bpmn2:outgoing>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400166 <bpmn2:script>import org.onap.so.bpmn.common.scripts.*
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700167def exUtil = new ExceptionUtil()
168exUtil.processSubflowsBPMNException(execution)
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400169</bpmn2:script>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700170 </bpmn2:scriptTask>
171 <bpmn2:sequenceFlow id="SequenceFlow_11" name="" sourceRef="ScriptTask_8" targetRef="EndEvent_2" />
172 <bpmn2:endEvent id="EndEvent_2">
173 <bpmn2:incoming>SequenceFlow_11</bpmn2:incoming>
174 </bpmn2:endEvent>
175 </bpmn2:subProcess>
176 </bpmn2:process>
177 <bpmn2:error id="Error_1" name="MSO Workflow Exception" errorCode="MSOWorkflowException" />
178 <bpmn2:message id="Message_1" name="WorkflowMessage" />
179 <bpmndi:BPMNDiagram id="BPMNDiagram_1">
180 <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="SDNCAdapterRestV1">
181 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_56" bpmnElement="ScriptTask_1">
182 <dc:Bounds x="204" y="148" width="100" height="80" />
183 </bpmndi:BPMNShape>
184 <bpmndi:BPMNShape id="_BPMNShape_SubProcess_14" bpmnElement="SubProcess_2" isExpanded="true">
185 <dc:Bounds x="744" y="303" width="629" height="280" />
186 </bpmndi:BPMNShape>
187 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_58" bpmnElement="ScriptTask_6">
188 <dc:Bounds x="948" y="404" width="100" height="80" />
189 </bpmndi:BPMNShape>
190 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_59" bpmnElement="ScriptTask_5">
191 <dc:Bounds x="1418" y="624" width="100" height="80" />
192 </bpmndi:BPMNShape>
193 <bpmndi:BPMNShape id="_BPMNShape_BoundaryEvent_24" bpmnElement="BoundaryEvent_1">
194 <dc:Bounds x="1300" y="565" width="36" height="36" />
195 <bpmndi:BPMNLabel>
196 <dc:Bounds x="1341" y="595" width="39" height="12" />
197 </bpmndi:BPMNLabel>
198 </bpmndi:BPMNShape>
199 <bpmndi:BPMNShape id="_BPMNShape_IntermediateCatchEvent_20" bpmnElement="IntermediateCatchEvent_1">
200 <dc:Bounds x="871" y="426" width="36" height="36" />
201 <bpmndi:BPMNLabel>
202 <dc:Bounds x="859" y="468" width="60" height="12" />
203 </bpmndi:BPMNLabel>
204 </bpmndi:BPMNShape>
205 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_78" bpmnElement="ScriptTask_4">
206 <dc:Bounds x="744" y="148" width="97" height="80" />
207 </bpmndi:BPMNShape>
208 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_79" bpmnElement="ScriptTask_2">
209 <dc:Bounds x="492" y="148" width="100" height="80" />
210 </bpmndi:BPMNShape>
211 <bpmndi:BPMNShape id="_BPMNShape_StartEvent_54" bpmnElement="StartEvent_1">
212 <dc:Bounds x="130" y="170" width="36" height="36" />
213 <bpmndi:BPMNLabel>
214 <dc:Bounds x="131" y="211" width="34" height="22" />
215 </bpmndi:BPMNLabel>
216 </bpmndi:BPMNShape>
217 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_168" bpmnElement="ScriptTask_3">
218 <dc:Bounds x="744" y="24" width="97" height="80" />
219 </bpmndi:BPMNShape>
220 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_2" bpmnElement="SequenceFlow_9" sourceElement="_BPMNShape_StartEvent_54" targetElement="_BPMNShape_ScriptTask_56">
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400221 <di:waypoint x="166" y="188" />
222 <di:waypoint x="204" y="188" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700223 <bpmndi:BPMNLabel>
224 <dc:Bounds x="176" y="188" width="6" height="6" />
225 </bpmndi:BPMNLabel>
226 </bpmndi:BPMNEdge>
227 <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_105" bpmnElement="ExclusiveGateway_1" isMarkerVisible="true">
228 <dc:Bounds x="624" y="162" width="50" height="50" />
229 <bpmndi:BPMNLabel>
230 <dc:Bounds x="649" y="217" width="0" height="0" />
231 </bpmndi:BPMNLabel>
232 </bpmndi:BPMNShape>
233 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_18" bpmnElement="SequenceFlow_14" sourceElement="_BPMNShape_ScriptTask_79" targetElement="_BPMNShape_ExclusiveGateway_105">
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400234 <di:waypoint x="592" y="188" />
235 <di:waypoint x="624" y="187" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700236 <bpmndi:BPMNLabel>
237 <dc:Bounds x="611" y="187" width="6" height="6" />
238 </bpmndi:BPMNLabel>
239 </bpmndi:BPMNEdge>
240 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_19" bpmnElement="SequenceFlow_17" sourceElement="_BPMNShape_ExclusiveGateway_105" targetElement="_BPMNShape_ScriptTask_168">
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400241 <di:waypoint x="649" y="162" />
242 <di:waypoint x="649" y="64" />
243 <di:waypoint x="744" y="64" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700244 <bpmndi:BPMNLabel>
245 <dc:Bounds x="688" y="64" width="27" height="22" />
246 </bpmndi:BPMNLabel>
247 </bpmndi:BPMNEdge>
248 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_20" bpmnElement="SequenceFlow_23" sourceElement="_BPMNShape_ExclusiveGateway_105" targetElement="_BPMNShape_ScriptTask_78">
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400249 <di:waypoint x="674" y="187" />
250 <di:waypoint x="709" y="187" />
251 <di:waypoint x="709" y="188" />
252 <di:waypoint x="744" y="188" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700253 <bpmndi:BPMNLabel>
254 <dc:Bounds x="684" y="188" width="35" height="22" />
255 </bpmndi:BPMNLabel>
256 </bpmndi:BPMNEdge>
257 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_25" bpmnElement="SequenceFlow_24" sourceElement="_BPMNShape_ExclusiveGateway_105" targetElement="_BPMNShape_SubProcess_14">
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400258 <di:waypoint x="649" y="212" />
259 <di:waypoint x="649" y="443" />
260 <di:waypoint x="744" y="443" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700261 <bpmndi:BPMNLabel>
262 <dc:Bounds x="689" y="443" width="18" height="12" />
263 </bpmndi:BPMNLabel>
264 </bpmndi:BPMNEdge>
265 <bpmndi:BPMNShape id="_BPMNShape_StartEvent_55" bpmnElement="StartEvent_3">
266 <dc:Bounds x="776" y="426" width="36" height="36" />
267 <bpmndi:BPMNLabel>
268 <dc:Bounds x="794" y="467" width="0" height="0" />
269 </bpmndi:BPMNLabel>
270 </bpmndi:BPMNShape>
271 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_27" bpmnElement="SequenceFlow_25" sourceElement="_BPMNShape_StartEvent_55" targetElement="_BPMNShape_IntermediateCatchEvent_20">
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400272 <di:waypoint x="812" y="444" />
273 <di:waypoint x="871" y="444" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700274 <bpmndi:BPMNLabel>
275 <dc:Bounds x="1074" y="442" width="0" height="0" />
276 </bpmndi:BPMNLabel>
277 </bpmndi:BPMNEdge>
278 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_29" bpmnElement="SequenceFlow_27" sourceElement="_BPMNShape_BoundaryEvent_24" targetElement="_BPMNShape_ScriptTask_59">
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400279 <di:waypoint x="1318" y="601" />
280 <di:waypoint x="1318" y="664" />
281 <di:waypoint x="1418" y="664" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700282 <bpmndi:BPMNLabel>
283 <dc:Bounds x="1153" y="655" width="0" height="0" />
284 </bpmndi:BPMNLabel>
285 </bpmndi:BPMNEdge>
286 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_158" bpmnElement="EndEvent_6">
287 <dc:Bounds x="1562" y="425" width="36" height="36" />
288 <bpmndi:BPMNLabel>
289 <dc:Bounds x="1566" y="466" width="29" height="22" />
290 </bpmndi:BPMNLabel>
291 </bpmndi:BPMNShape>
292 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_160" bpmnElement="EndEvent_8">
293 <dc:Bounds x="1562" y="646" width="36" height="36" />
294 <bpmndi:BPMNLabel>
295 <dc:Bounds x="1580" y="687" width="0" height="0" />
296 </bpmndi:BPMNLabel>
297 </bpmndi:BPMNShape>
298 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_36" bpmnElement="SequenceFlow_34" sourceElement="_BPMNShape_ScriptTask_59" targetElement="_BPMNShape_EndEvent_160">
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400299 <di:waypoint x="1518" y="664" />
300 <di:waypoint x="1562" y="664" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700301 <bpmndi:BPMNLabel>
302 <dc:Bounds x="1542" y="664" width="6" height="6" />
303 </bpmndi:BPMNLabel>
304 </bpmndi:BPMNEdge>
305 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_161" bpmnElement="EndEvent_9">
306 <dc:Bounds x="891" y="46" width="36" height="36" />
307 <bpmndi:BPMNLabel>
308 <dc:Bounds x="909" y="87" width="0" height="0" />
309 </bpmndi:BPMNLabel>
310 </bpmndi:BPMNShape>
311 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_37" bpmnElement="SequenceFlow_35" sourceElement="_BPMNShape_ScriptTask_168" targetElement="_BPMNShape_EndEvent_161">
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400312 <di:waypoint x="840" y="64" />
313 <di:waypoint x="891" y="64" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700314 <bpmndi:BPMNLabel>
315 <dc:Bounds x="865" y="64" width="6" height="6" />
316 </bpmndi:BPMNLabel>
317 </bpmndi:BPMNEdge>
318 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_162" bpmnElement="EndEvent_10">
319 <dc:Bounds x="892" y="170" width="36" height="36" />
320 <bpmndi:BPMNLabel>
321 <dc:Bounds x="910" y="211" width="0" height="0" />
322 </bpmndi:BPMNLabel>
323 </bpmndi:BPMNShape>
324 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_38" bpmnElement="SequenceFlow_36" sourceElement="_BPMNShape_ScriptTask_78" targetElement="_BPMNShape_EndEvent_162">
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400325 <di:waypoint x="840" y="188" />
326 <di:waypoint x="892" y="188" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700327 </bpmndi:BPMNEdge>
328 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_236" bpmnElement="ScriptTask_setSuccess">
329 <dc:Bounds x="1419" y="401" width="97" height="83" />
330 </bpmndi:BPMNShape>
331 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_1" bpmnElement="SequenceFlow_1" sourceElement="_BPMNShape_ScriptTask_236" targetElement="_BPMNShape_EndEvent_158">
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400332 <di:waypoint x="1515" y="442" />
333 <di:waypoint x="1562" y="443" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700334 <bpmndi:BPMNLabel>
335 <dc:Bounds x="1548" y="443" width="6" height="6" />
336 </bpmndi:BPMNLabel>
337 </bpmndi:BPMNEdge>
338 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_237" bpmnElement="ScriptTask_7">
339 <dc:Bounds x="360" y="146" width="97" height="83" />
340 </bpmndi:BPMNShape>
341 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_3" bpmnElement="SequenceFlow_2" sourceElement="_BPMNShape_ScriptTask_56" targetElement="_BPMNShape_ScriptTask_237">
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400342 <di:waypoint x="304" y="188" />
343 <di:waypoint x="344" y="188" />
344 <di:waypoint x="344" y="187" />
345 <di:waypoint x="360" y="187" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700346 <bpmndi:BPMNLabel>
347 <dc:Bounds x="317" y="188" width="6" height="6" />
348 </bpmndi:BPMNLabel>
349 </bpmndi:BPMNEdge>
350 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_4" bpmnElement="SequenceFlow_3" sourceElement="_BPMNShape_ScriptTask_237" targetElement="_BPMNShape_ScriptTask_79">
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400351 <di:waypoint x="456" y="187" />
352 <di:waypoint x="474" y="187" />
353 <di:waypoint x="474" y="188" />
354 <di:waypoint x="492" y="188" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700355 </bpmndi:BPMNEdge>
356 <bpmndi:BPMNShape id="_BPMNShape_SubProcess_24" bpmnElement="SubProcess_1" isExpanded="true">
357 <dc:Bounds x="156" y="516" width="382" height="181" />
358 </bpmndi:BPMNShape>
359 <bpmndi:BPMNShape id="_BPMNShape_StartEvent_66" bpmnElement="StartEvent_2">
360 <dc:Bounds x="204" y="589" width="36" height="36" />
361 <bpmndi:BPMNLabel>
362 <dc:Bounds x="222" y="630" width="0" height="0" />
363 </bpmndi:BPMNLabel>
364 </bpmndi:BPMNShape>
365 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_266" bpmnElement="ScriptTask_8">
366 <dc:Bounds x="302" y="565" width="97" height="83" />
367 </bpmndi:BPMNShape>
368 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_5" bpmnElement="SequenceFlow_4" sourceElement="_BPMNShape_StartEvent_66" targetElement="_BPMNShape_ScriptTask_266">
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400369 <di:waypoint x="240" y="607" />
370 <di:waypoint x="302" y="606" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700371 <bpmndi:BPMNLabel>
372 <dc:Bounds x="280" y="630" width="6" height="6" />
373 </bpmndi:BPMNLabel>
374 </bpmndi:BPMNEdge>
375 <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_107" bpmnElement="ExclusiveGateway_3" isMarkerVisible="true">
376 <dc:Bounds x="1092" y="418" width="50" height="50" />
377 <bpmndi:BPMNLabel>
378 <dc:Bounds x="1093" y="381" width="54" height="24" />
379 </bpmndi:BPMNLabel>
380 </bpmndi:BPMNShape>
381 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_215" bpmnElement="EndEvent_3">
382 <dc:Bounds x="1100" y="516" width="36" height="36" />
383 <bpmndi:BPMNLabel>
384 <dc:Bounds x="1118" y="557" width="0" height="0" />
385 </bpmndi:BPMNLabel>
386 </bpmndi:BPMNShape>
387 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_9" bpmnElement="SequenceFlow_8" sourceElement="_BPMNShape_ExclusiveGateway_107" targetElement="_BPMNShape_EndEvent_215">
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400388 <di:waypoint x="1117" y="468" />
389 <di:waypoint x="1118" y="516" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700390 <bpmndi:BPMNLabel>
391 <dc:Bounds x="1122" y="468" width="18" height="12" />
392 </bpmndi:BPMNLabel>
393 </bpmndi:BPMNEdge>
394 <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_111" bpmnElement="ExclusiveGateway_7" isMarkerVisible="true">
395 <dc:Bounds x="1204" y="418" width="50" height="50" />
396 <bpmndi:BPMNLabel>
397 <dc:Bounds x="1192" y="472" width="86" height="12" />
398 </bpmndi:BPMNLabel>
399 </bpmndi:BPMNShape>
400 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_26" bpmnElement="SequenceFlow_30" sourceElement="_BPMNShape_ExclusiveGateway_107" targetElement="_BPMNShape_ExclusiveGateway_111">
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400401 <di:waypoint x="1142" y="443" />
402 <di:waypoint x="1204" y="443" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700403 <bpmndi:BPMNLabel>
404 <dc:Bounds x="1156" y="443" width="12" height="12" />
405 </bpmndi:BPMNLabel>
406 </bpmndi:BPMNEdge>
407 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_39" bpmnElement="SequenceFlow_39" sourceElement="_BPMNShape_ExclusiveGateway_111" targetElement="_BPMNShape_EndEvent_219">
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400408 <di:waypoint x="1254" y="443" />
409 <di:waypoint x="1308" y="444" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700410 <bpmndi:BPMNLabel>
411 <dc:Bounds x="1276" y="418" width="7" height="12" />
412 </bpmndi:BPMNLabel>
413 </bpmndi:BPMNEdge>
414 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_41" bpmnElement="SequenceFlow_41" sourceElement="_BPMNShape_IntermediateCatchEvent_20" targetElement="_BPMNShape_ScriptTask_58">
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400415 <di:waypoint x="907" y="444" />
416 <di:waypoint x="948" y="444" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700417 <bpmndi:BPMNLabel>
418 <dc:Bounds x="763" y="475" width="0" height="0" />
419 </bpmndi:BPMNLabel>
420 </bpmndi:BPMNEdge>
421 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_219" bpmnElement="EndEvent_12">
422 <dc:Bounds x="1308" y="426" width="36" height="36" />
423 <bpmndi:BPMNLabel>
424 <dc:Bounds x="1326" y="467" width="0" height="0" />
425 </bpmndi:BPMNLabel>
426 </bpmndi:BPMNShape>
427 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_42" bpmnElement="SequenceFlow_42" sourceElement="_BPMNShape_ScriptTask_58" targetElement="_BPMNShape_ExclusiveGateway_107">
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400428 <di:waypoint x="1048" y="444" />
429 <di:waypoint x="1070" y="444" />
430 <di:waypoint x="1070" y="443" />
431 <di:waypoint x="1092" y="443" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700432 <bpmndi:BPMNLabel>
433 <dc:Bounds x="905" y="462" width="0" height="0" />
434 </bpmndi:BPMNLabel>
435 </bpmndi:BPMNEdge>
436 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_43" bpmnElement="SequenceFlow_43" sourceElement="_BPMNShape_ExclusiveGateway_111" targetElement="_BPMNShape_IntermediateCatchEvent_20">
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400437 <di:waypoint x="1229" y="418" />
438 <di:waypoint x="1229" y="351" />
439 <di:waypoint x="889" y="351" />
440 <di:waypoint x="889" y="426" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700441 <bpmndi:BPMNLabel>
442 <dc:Bounds x="1240" y="360" width="8" height="12" />
443 </bpmndi:BPMNLabel>
444 </bpmndi:BPMNEdge>
445 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_44" bpmnElement="SequenceFlow_44" sourceElement="_BPMNShape_SubProcess_14" targetElement="_BPMNShape_ScriptTask_236">
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400446 <di:waypoint x="1372" y="443" />
447 <di:waypoint x="1395" y="443" />
448 <di:waypoint x="1395" y="442" />
449 <di:waypoint x="1419" y="442" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700450 <bpmndi:BPMNLabel>
451 <dc:Bounds x="1404" y="462" width="0" height="0" />
452 </bpmndi:BPMNLabel>
453 </bpmndi:BPMNEdge>
454 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_220" bpmnElement="EndEvent_2">
455 <dc:Bounds x="444" y="589" width="36" height="36" />
456 <bpmndi:BPMNLabel>
457 <dc:Bounds x="462" y="630" width="0" height="0" />
458 </bpmndi:BPMNLabel>
459 </bpmndi:BPMNShape>
460 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_11" bpmnElement="SequenceFlow_11" sourceElement="_BPMNShape_ScriptTask_266" targetElement="_BPMNShape_EndEvent_220">
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400461 <di:waypoint x="398" y="606" />
462 <di:waypoint x="444" y="607" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700463 <bpmndi:BPMNLabel>
464 <dc:Bounds x="412" y="606" width="6" height="6" />
465 </bpmndi:BPMNLabel>
466 </bpmndi:BPMNEdge>
467 </bpmndi:BPMNPlane>
468 </bpmndi:BPMNDiagram>
469</bpmn2:definitions>