blob: de9adc59c7a6e1b2049faa458b3384caae097d70 [file] [log] [blame]
xg353yb6b7bef2017-04-11 13:30:42 +02001<?xml version="1.0" encoding="UTF-8"?>
2<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" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL BPMN20.xsd" id="_Wblj8GyfEeWUWLTvug7ZOg" exporter="camunda modeler" exporterVersion="2.7.0" targetNamespace="http://camunda.org/schema/1.0/bpmn">
3 <bpmn2:process id="PrepareUpdateAAIVfModule" name="PrepareUpdateAAIVfModule" isExecutable="true">
ChrisC025301d2017-01-31 11:40:03 +01004 <bpmn2:documentation><![CDATA[This flow expects its incoming request to be in the variable 'PrepareUpdateAAIVfModuleRequest'. This flow has 2 outputs: The heat stack ID is placed in the variable 'PUAAIVfMod_heatStackId'.
xg353yb6b7bef2017-04-11 13:30:42 +02005and the updated VF Module (type=VfModule) is placed in the variable 'PUAAIVfMod_outVfModule'.]]></bpmn2:documentation>
6 <bpmn2:scriptTask id="QueryAAIForGenericVnf" name="Query AAI for Generic Vnf" scriptFormat="groovy">
7 <bpmn2:incoming>SequenceFlow_38</bpmn2:incoming>
8 <bpmn2:outgoing>SequenceFlow_39</bpmn2:outgoing>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -04009 <bpmn2:script><![CDATA[import org.onap.so.bpmn.common.scripts.*
ChrisC025301d2017-01-31 11:40:03 +010010def puvm = new PrepareUpdateAAIVfModule()
xg353yb6b7bef2017-04-11 13:30:42 +020011puvm.getGenericVnf(execution)]]></bpmn2:script>
12 </bpmn2:scriptTask>
13 <bpmn2:sequenceFlow id="SequenceFlow_39" name="" sourceRef="QueryAAIForGenericVnf" targetRef="ExclusiveGateway_3"/>
14 <bpmn2:exclusiveGateway id="ExclusiveGateway_3" default="SequenceFlow_23">
15 <bpmn2:incoming>SequenceFlow_39</bpmn2:incoming>
16 <bpmn2:outgoing>SequenceFlow_22</bpmn2:outgoing>
17 <bpmn2:outgoing>SequenceFlow_23</bpmn2:outgoing>
18 </bpmn2:exclusiveGateway>
19 <bpmn2:sequenceFlow id="SequenceFlow_22" name="" sourceRef="ExclusiveGateway_3" targetRef="ScriptTask_1">
20 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression">#{execution.getVariable('PUAAIVfMod_getVnfResponseCode') == 200}</bpmn2:conditionExpression>
21 </bpmn2:sequenceFlow>
22 <bpmn2:sequenceFlow id="SequenceFlow_23" name="AAI Query failure or&#xD;&#xA;Generic Vnf not found" sourceRef="ExclusiveGateway_3" targetRef="VnfNotFound"/>
23 <bpmn2:scriptTask id="ScriptTask_1" name="Validate VF Module" scriptFormat="groovy">
24 <bpmn2:incoming>SequenceFlow_22</bpmn2:incoming>
25 <bpmn2:outgoing>SequenceFlow_10</bpmn2:outgoing>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040026 <bpmn2:script><![CDATA[import org.onap.so.bpmn.common.scripts.*
ChrisC025301d2017-01-31 11:40:03 +010027def puvm= new PrepareUpdateAAIVfModule()
xg353yb6b7bef2017-04-11 13:30:42 +020028puvm.validateVfModule(execution)]]></bpmn2:script>
29 </bpmn2:scriptTask>
30 <bpmn2:scriptTask id="VnfNotFound" name="Handle Generic Vnf Not found" scriptFormat="groovy">
31 <bpmn2:incoming>SequenceFlow_23</bpmn2:incoming>
32 <bpmn2:outgoing>SequenceFlow_18</bpmn2:outgoing>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040033 <bpmn2:script><![CDATA[import org.onap.so.bpmn.common.scripts.*
ChrisC025301d2017-01-31 11:40:03 +010034def puvm= new PrepareUpdateAAIVfModule()
xg353yb6b7bef2017-04-11 13:30:42 +020035puvm.handleVnfNotFound(execution)]]></bpmn2:script>
36 </bpmn2:scriptTask>
37 <bpmn2:sequenceFlow id="SequenceFlow_18" name="" sourceRef="VnfNotFound" targetRef="EndEvent_7"/>
38 <bpmn2:endEvent id="EndEvent_7">
39 <bpmn2:incoming>SequenceFlow_18</bpmn2:incoming>
40 <bpmn2:errorEventDefinition id="_ErrorEventDefinition_68" errorRef="Error_1"/>
41 </bpmn2:endEvent>
42 <bpmn2:sequenceFlow id="SequenceFlow_10" name="" sourceRef="ScriptTask_1" targetRef="ExclusiveGateway_2"/>
43 <bpmn2:exclusiveGateway id="ExclusiveGateway_2" default="SequenceFlow_12">
44 <bpmn2:incoming>SequenceFlow_10</bpmn2:incoming>
45 <bpmn2:outgoing>SequenceFlow_12</bpmn2:outgoing>
46 <bpmn2:outgoing>SequenceFlow_16</bpmn2:outgoing>
47 </bpmn2:exclusiveGateway>
48 <bpmn2:scriptTask id="ScriptTask_2" name="Handle VF Module Validation Error" scriptFormat="groovy">
49 <bpmn2:incoming>SequenceFlow_12</bpmn2:incoming>
50 <bpmn2:outgoing>SequenceFlow_15</bpmn2:outgoing>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040051 <bpmn2:script><![CDATA[import org.onap.so.bpmn.common.scripts.*
ChrisC025301d2017-01-31 11:40:03 +010052def puvm= new PrepareUpdateAAIVfModule()
xg353yb6b7bef2017-04-11 13:30:42 +020053puvm.handleVfModuleValidationError(execution)]]></bpmn2:script>
54 </bpmn2:scriptTask>
55 <bpmn2:sequenceFlow id="SequenceFlow_12" name="VF Module invalid or&#xD;&#xA;not found" sourceRef="ExclusiveGateway_2" targetRef="ScriptTask_2"/>
56 <bpmn2:sequenceFlow id="SequenceFlow_15" name="" sourceRef="ScriptTask_2" targetRef="EndEvent_1"/>
57 <bpmn2:endEvent id="EndEvent_1">
58 <bpmn2:incoming>SequenceFlow_15</bpmn2:incoming>
59 <bpmn2:errorEventDefinition id="_ErrorEventDefinition_69" errorRef="Error_1"/>
60 </bpmn2:endEvent>
61 <bpmn2:exclusiveGateway id="ExclusiveGateway_1" default="SequenceFlow_4">
62 <bpmn2:incoming>SequenceFlow_14</bpmn2:incoming>
63 <bpmn2:outgoing>SequenceFlow_13</bpmn2:outgoing>
64 <bpmn2:outgoing>SequenceFlow_4</bpmn2:outgoing>
65 </bpmn2:exclusiveGateway>
66 <bpmn2:sequenceFlow id="SequenceFlow_13" sourceRef="ExclusiveGateway_1" targetRef="EndEvent_4">
67 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression">#{execution.getVariable('PUAAIVfMod_updateVfModuleResponseCode') == 200}</bpmn2:conditionExpression>
68 </bpmn2:sequenceFlow>
69 <bpmn2:sequenceFlow id="SequenceFlow_4" name="Update VF Module Failure" sourceRef="ExclusiveGateway_1" targetRef="HandleUpdateVfModuleFailure"/>
70 <bpmn2:endEvent id="EndEvent_2">
71 <bpmn2:incoming>SequenceFlow_8</bpmn2:incoming>
72 <bpmn2:errorEventDefinition id="_ErrorEventDefinition_50" errorRef="Error_1"/>
73 </bpmn2:endEvent>
74 <bpmn2:endEvent id="EndEvent_4" name="TheEnd">
75 <bpmn2:extensionElements>
76 <camunda:connector>
77 <camunda:inputOutput>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040078 <camunda:outputParameter name="CreateCustomerV1Response"><![CDATA[<aetgt:CreateCustomerResponse xmlns:aetgt="http://org.onap/so/workflow/schema/v1" xmlns:ns="http://org.onap/so/workflow/schema/v1">
ChrisC025301d2017-01-31 11:40:03 +010079 <ns:GlobalCustomerId>${CCV1_subscriberglobalid}</ns:GlobalCustomerId>
xg353yb6b7bef2017-04-11 13:30:42 +020080 </aetgt:CreateCustomerResponse>]]></camunda:outputParameter>
81 </camunda:inputOutput>
82 </camunda:connector>
83 </bpmn2:extensionElements>
84 <bpmn2:incoming>SequenceFlow_13</bpmn2:incoming>
85 </bpmn2:endEvent>
86 <bpmn2:scriptTask id="HandleUpdateVfModuleFailure" name="Handle Update VF Module Failure" scriptFormat="groovy">
87 <bpmn2:incoming>SequenceFlow_4</bpmn2:incoming>
88 <bpmn2:outgoing>SequenceFlow_8</bpmn2:outgoing>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040089 <bpmn2:script><![CDATA[import org.onap.so.bpmn.common.scripts.*
ChrisC025301d2017-01-31 11:40:03 +010090def puvm= new PrepareUpdateAAIVfModule()
xg353yb6b7bef2017-04-11 13:30:42 +020091puvm.handleUpdateVfModuleFailure(execution)]]></bpmn2:script>
92 </bpmn2:scriptTask>
93 <bpmn2:sequenceFlow id="SequenceFlow_8" name="" sourceRef="HandleUpdateVfModuleFailure" targetRef="EndEvent_2"/>
94 <bpmn2:scriptTask id="UpdateVfModule" name="Update VF Module" scriptFormat="groovy">
95 <bpmn2:incoming>SequenceFlow_16</bpmn2:incoming>
96 <bpmn2:outgoing>SequenceFlow_14</bpmn2:outgoing>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040097 <bpmn2:script><![CDATA[import org.onap.so.bpmn.common.scripts.*
ChrisC025301d2017-01-31 11:40:03 +010098def puvm= new PrepareUpdateAAIVfModule()
xg353yb6b7bef2017-04-11 13:30:42 +020099puvm.updateVfModule(execution)]]></bpmn2:script>
100 </bpmn2:scriptTask>
101 <bpmn2:sequenceFlow id="SequenceFlow_14" name="" sourceRef="UpdateVfModule" targetRef="ExclusiveGateway_1"/>
102 <bpmn2:sequenceFlow id="SequenceFlow_16" name="" sourceRef="ExclusiveGateway_2" targetRef="UpdateVfModule">
103 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression">#{execution.getVariable('PUAAIVfMod_vfModuleOK')}</bpmn2:conditionExpression>
104 </bpmn2:sequenceFlow>
105 <bpmn2:startEvent id="StartEvent_1" name="Start">
106 <bpmn2:outgoing>SequenceFlow_1</bpmn2:outgoing>
107 </bpmn2:startEvent>
108 <bpmn2:sequenceFlow id="SequenceFlow_1" name="" sourceRef="StartEvent_1" targetRef="ProcessReceivedRequest"/>
109 <bpmn2:scriptTask id="ProcessReceivedRequest" name="Process Received Request" scriptFormat="groovy">
110 <bpmn2:incoming>SequenceFlow_1</bpmn2:incoming>
111 <bpmn2:outgoing>SequenceFlow_38</bpmn2:outgoing>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400112 <bpmn2:script><![CDATA[import org.onap.so.bpmn.common.scripts.*
ChrisC025301d2017-01-31 11:40:03 +0100113def puvm= new PrepareUpdateAAIVfModule()
xg353yb6b7bef2017-04-11 13:30:42 +0200114puvm.preProcessRequest(execution)]]></bpmn2:script>
115 </bpmn2:scriptTask>
116 <bpmn2:sequenceFlow id="SequenceFlow_38" name="" sourceRef="ProcessReceivedRequest" targetRef="QueryAAIForGenericVnf"/>
117 </bpmn2:process>
118 <bpmn2:error id="Error_1" errorCode="MSOWorkflowException" name="MSO Workflow Exception"/>
119 <bpmndi:BPMNDiagram id="BPMNDiagram_1">
120 <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="PrepareUpdateAAIVfModule">
121 <bpmndi:BPMNShape id="_BPMNShape_StartEvent_37" bpmnElement="StartEvent_1">
122 <dc:Bounds height="36.0" width="36.0" x="37.0" y="212.0"/>
123 <bpmndi:BPMNLabel>
124 <dc:Bounds height="22.0" width="34.0" x="38.0" y="253.0"/>
125 </bpmndi:BPMNLabel>
126 </bpmndi:BPMNShape>
127 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_22" bpmnElement="ProcessReceivedRequest">
128 <dc:Bounds height="80.0" width="100.0" x="181.0" y="190.0"/>
129 </bpmndi:BPMNShape>
130 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_1" bpmnElement="SequenceFlow_1" sourceElement="_BPMNShape_StartEvent_37" targetElement="_BPMNShape_ScriptTask_22">
131 <di:waypoint xsi:type="dc:Point" x="73.0" y="230.0"/>
132 <di:waypoint xsi:type="dc:Point" x="181.0" y="230.0"/>
133 <bpmndi:BPMNLabel>
134 <dc:Bounds height="6.0" width="6.0" x="95.0" y="230.0"/>
135 </bpmndi:BPMNLabel>
136 </bpmndi:BPMNEdge>
137 <bpmndi:BPMNShape id="_BPMNShape_Task_2" bpmnElement="UpdateVfModule">
138 <dc:Bounds height="80.0" width="100.0" x="81.0" y="540.0"/>
139 </bpmndi:BPMNShape>
140 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_92" bpmnElement="EndEvent_4">
141 <dc:Bounds height="36.0" width="36.0" x="425.0" y="560.0"/>
142 <bpmndi:BPMNLabel>
143 <dc:Bounds height="22.0" width="50.0" x="418.0" y="601.0"/>
144 </bpmndi:BPMNLabel>
145 </bpmndi:BPMNShape>
146 <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_54" bpmnElement="ExclusiveGateway_1" isMarkerVisible="true">
147 <dc:Bounds height="50.0" width="50.0" x="250.0" y="554.0"/>
148 <bpmndi:BPMNLabel>
149 <dc:Bounds height="0.0" width="0.0" x="275.0" y="609.0"/>
150 </bpmndi:BPMNLabel>
151 </bpmndi:BPMNShape>
152 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_14" bpmnElement="SequenceFlow_13" sourceElement="_BPMNShape_ExclusiveGateway_54" targetElement="_BPMNShape_EndEvent_92">
153 <di:waypoint xsi:type="dc:Point" x="300.0" y="579.0"/>
154 <di:waypoint xsi:type="dc:Point" x="402.0" y="579.0"/>
155 <di:waypoint xsi:type="dc:Point" x="402.0" y="578.0"/>
156 <di:waypoint xsi:type="dc:Point" x="425.0" y="578.0"/>
157 <bpmndi:BPMNLabel>
158 <dc:Bounds height="0.0" width="0.0" x="338.0" y="579.0"/>
159 </bpmndi:BPMNLabel>
160 </bpmndi:BPMNEdge>
161 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_120" bpmnElement="EndEvent_2">
162 <dc:Bounds height="36.0" width="36.0" x="257.0" y="348.0"/>
163 <bpmndi:BPMNLabel>
164 <dc:Bounds height="0.0" width="0.0" x="275.0" y="389.0"/>
165 </bpmndi:BPMNLabel>
166 </bpmndi:BPMNShape>
167 <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_86" bpmnElement="ExclusiveGateway_3" isMarkerVisible="true">
168 <dc:Bounds height="50.0" width="50.0" x="499.0" y="206.0"/>
169 <bpmndi:BPMNLabel>
170 <dc:Bounds height="0.0" width="0.0" x="524.0" y="261.0"/>
171 </bpmndi:BPMNLabel>
172 </bpmndi:BPMNShape>
173 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_23" bpmnElement="SequenceFlow_22" sourceElement="_BPMNShape_ExclusiveGateway_86" targetElement="_BPMNShape_ScriptTask_162">
174 <di:waypoint xsi:type="dc:Point" x="549.0" y="231.0"/>
175 <di:waypoint xsi:type="dc:Point" x="601.0" y="231.0"/>
176 <di:waypoint xsi:type="dc:Point" x="601.0" y="230.0"/>
177 <di:waypoint xsi:type="dc:Point" x="661.0" y="230.0"/>
178 <bpmndi:BPMNLabel>
179 <dc:Bounds height="6.0" width="6.0" x="564.0" y="231.0"/>
180 </bpmndi:BPMNLabel>
181 </bpmndi:BPMNEdge>
182 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_155" bpmnElement="VnfNotFound">
183 <dc:Bounds height="80.0" width="100.0" x="475.0" y="72.0"/>
184 </bpmndi:BPMNShape>
185 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_24" bpmnElement="SequenceFlow_23" sourceElement="_BPMNShape_ExclusiveGateway_86" targetElement="_BPMNShape_ScriptTask_155">
186 <di:waypoint xsi:type="dc:Point" x="524.0" y="206.0"/>
187 <di:waypoint xsi:type="dc:Point" x="524.0" y="173.0"/>
188 <di:waypoint xsi:type="dc:Point" x="525.0" y="173.0"/>
189 <di:waypoint xsi:type="dc:Point" x="525.0" y="152.0"/>
190 <bpmndi:BPMNLabel>
191 <dc:Bounds height="38.0" width="135.0" x="526.0" y="160.0"/>
192 </bpmndi:BPMNLabel>
193 </bpmndi:BPMNEdge>
194 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_160" bpmnElement="EndEvent_7">
195 <dc:Bounds height="36.0" width="36.0" x="507.0" y="5.0"/>
196 <bpmndi:BPMNLabel>
197 <dc:Bounds height="0.0" width="0.0" x="525.0" y="46.0"/>
198 </bpmndi:BPMNLabel>
199 </bpmndi:BPMNShape>
200 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_18" bpmnElement="SequenceFlow_18" sourceElement="_BPMNShape_ScriptTask_155" targetElement="_BPMNShape_EndEvent_160">
201 <di:waypoint xsi:type="dc:Point" x="525.0" y="72.0"/>
202 <di:waypoint xsi:type="dc:Point" x="525.0" y="41.0"/>
203 <bpmndi:BPMNLabel>
204 <dc:Bounds height="6.0" width="6.0" x="522.0" y="61.0"/>
205 </bpmndi:BPMNLabel>
206 </bpmndi:BPMNEdge>
207 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_160" bpmnElement="QueryAAIForGenericVnf">
208 <dc:Bounds height="80.0" width="100.0" x="336.0" y="190.0"/>
209 </bpmndi:BPMNShape>
210 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_38" bpmnElement="SequenceFlow_38" sourceElement="_BPMNShape_ScriptTask_22" targetElement="_BPMNShape_ScriptTask_160">
211 <di:waypoint xsi:type="dc:Point" x="281.0" y="230.0"/>
212 <di:waypoint xsi:type="dc:Point" x="336.0" y="230.0"/>
213 <bpmndi:BPMNLabel>
214 <dc:Bounds height="6.0" width="6.0" x="301.0" y="230.0"/>
215 </bpmndi:BPMNLabel>
216 </bpmndi:BPMNEdge>
217 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_39" bpmnElement="SequenceFlow_39" sourceElement="_BPMNShape_ScriptTask_160" targetElement="_BPMNShape_ExclusiveGateway_86">
218 <di:waypoint xsi:type="dc:Point" x="436.0" y="230.0"/>
219 <di:waypoint xsi:type="dc:Point" x="452.0" y="230.0"/>
220 <di:waypoint xsi:type="dc:Point" x="452.0" y="231.0"/>
221 <di:waypoint xsi:type="dc:Point" x="499.0" y="231.0"/>
222 <bpmndi:BPMNLabel>
223 <dc:Bounds height="6.0" width="6.0" x="449.0" y="231.0"/>
224 </bpmndi:BPMNLabel>
225 </bpmndi:BPMNEdge>
226 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_161" bpmnElement="HandleUpdateVfModuleFailure">
227 <dc:Bounds height="80.0" width="100.0" x="225.0" y="408.0"/>
228 </bpmndi:BPMNShape>
229 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_6" bpmnElement="SequenceFlow_8" sourceElement="_BPMNShape_ScriptTask_161" targetElement="_BPMNShape_EndEvent_120">
230 <di:waypoint xsi:type="dc:Point" x="275.0" y="408.0"/>
231 <di:waypoint xsi:type="dc:Point" x="275.0" y="384.0"/>
232 <bpmndi:BPMNLabel>
233 <dc:Bounds height="6.0" width="6.0" x="300.0" y="740.0"/>
234 </bpmndi:BPMNLabel>
235 </bpmndi:BPMNEdge>
236 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_13" bpmnElement="SequenceFlow_14" sourceElement="_BPMNShape_Task_2" targetElement="_BPMNShape_ExclusiveGateway_54">
237 <di:waypoint xsi:type="dc:Point" x="181.0" y="580.0"/>
238 <di:waypoint xsi:type="dc:Point" x="206.0" y="580.0"/>
239 <di:waypoint xsi:type="dc:Point" x="206.0" y="579.0"/>
240 <di:waypoint xsi:type="dc:Point" x="250.0" y="579.0"/>
241 <bpmndi:BPMNLabel>
242 <dc:Bounds height="6.0" width="6.0" x="174.0" y="711.0"/>
243 </bpmndi:BPMNLabel>
244 </bpmndi:BPMNEdge>
245 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_3" bpmnElement="SequenceFlow_4" sourceElement="_BPMNShape_ExclusiveGateway_54" targetElement="_BPMNShape_ScriptTask_161">
246 <di:waypoint xsi:type="dc:Point" x="275.0" y="554.0"/>
247 <di:waypoint xsi:type="dc:Point" x="275.0" y="520.0"/>
248 <di:waypoint xsi:type="dc:Point" x="276.0" y="520.0"/>
249 <di:waypoint xsi:type="dc:Point" x="276.0" y="488.0"/>
250 <bpmndi:BPMNLabel>
251 <dc:Bounds height="22.0" width="157.0" x="280.0" y="504.0"/>
252 </bpmndi:BPMNLabel>
253 </bpmndi:BPMNEdge>
254 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_162" bpmnElement="ScriptTask_1">
255 <dc:Bounds height="80.0" width="100.0" x="661.0" y="190.0"/>
256 </bpmndi:BPMNShape>
257 <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_87" bpmnElement="ExclusiveGateway_2" isMarkerVisible="true">
258 <dc:Bounds height="50.0" width="50.0" x="829.0" y="204.0"/>
259 <bpmndi:BPMNLabel>
260 <dc:Bounds height="0.0" width="0.0" x="854.0" y="259.0"/>
261 </bpmndi:BPMNLabel>
262 </bpmndi:BPMNShape>
263 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_10" bpmnElement="SequenceFlow_10" sourceElement="_BPMNShape_ScriptTask_162" targetElement="_BPMNShape_ExclusiveGateway_87">
264 <di:waypoint xsi:type="dc:Point" x="761.0" y="230.0"/>
265 <di:waypoint xsi:type="dc:Point" x="795.0" y="230.0"/>
266 <di:waypoint xsi:type="dc:Point" x="795.0" y="229.0"/>
267 <di:waypoint xsi:type="dc:Point" x="829.0" y="229.0"/>
268 <bpmndi:BPMNLabel>
269 <dc:Bounds height="6.0" width="6.0" x="792.0" y="230.0"/>
270 </bpmndi:BPMNLabel>
271 </bpmndi:BPMNEdge>
272 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_163" bpmnElement="ScriptTask_2">
273 <dc:Bounds height="80.0" width="100.0" x="805.0" y="72.0"/>
274 </bpmndi:BPMNShape>
275 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_161" bpmnElement="EndEvent_1">
276 <dc:Bounds height="36.0" width="36.0" x="837.0" y="5.0"/>
277 <bpmndi:BPMNLabel>
278 <dc:Bounds height="0.0" width="0.0" x="855.0" y="46.0"/>
279 </bpmndi:BPMNLabel>
280 </bpmndi:BPMNShape>
281 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_12" bpmnElement="SequenceFlow_12" sourceElement="_BPMNShape_ExclusiveGateway_87" targetElement="_BPMNShape_ScriptTask_163">
282 <di:waypoint xsi:type="dc:Point" x="854.0" y="204.0"/>
283 <di:waypoint xsi:type="dc:Point" x="854.0" y="178.0"/>
284 <di:waypoint xsi:type="dc:Point" x="855.0" y="178.0"/>
285 <di:waypoint xsi:type="dc:Point" x="855.0" y="152.0"/>
286 <bpmndi:BPMNLabel>
287 <dc:Bounds height="38.0" width="133.0" x="864.0" y="160.0"/>
288 </bpmndi:BPMNLabel>
289 </bpmndi:BPMNEdge>
290 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_15" bpmnElement="SequenceFlow_15" sourceElement="_BPMNShape_ScriptTask_163" targetElement="_BPMNShape_EndEvent_161">
291 <di:waypoint xsi:type="dc:Point" x="855.0" y="72.0"/>
292 <di:waypoint xsi:type="dc:Point" x="855.0" y="41.0"/>
293 <bpmndi:BPMNLabel>
294 <dc:Bounds height="6.0" width="6.0" x="852.0" y="54.0"/>
295 </bpmndi:BPMNLabel>
296 </bpmndi:BPMNEdge>
297 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_16" bpmnElement="SequenceFlow_16" sourceElement="_BPMNShape_ExclusiveGateway_87" targetElement="_BPMNShape_Task_2">
298 <di:waypoint xsi:type="dc:Point" x="854.0" y="254.0"/>
299 <di:waypoint xsi:type="dc:Point" x="854.0" y="302.0"/>
300 <di:waypoint xsi:type="dc:Point" x="131.0" y="302.0"/>
301 <di:waypoint xsi:type="dc:Point" x="131.0" y="540.0"/>
302 <bpmndi:BPMNLabel>
303 <dc:Bounds height="6.0" width="6.0" x="399.0" y="302.0"/>
304 </bpmndi:BPMNLabel>
305 </bpmndi:BPMNEdge>
306 </bpmndi:BPMNPlane>
307 </bpmndi:BPMNDiagram>
ChrisC025301d2017-01-31 11:40:03 +0100308</bpmn2:definitions>