blob: 9850552a9e37edb261f49a1e6a4ab43ac1d1c1dc [file] [log] [blame]
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -07001<?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" id="_9MhrcHqVEea26OhQB97uCQ" targetNamespace="http://camunda.org/schema/1.0/bpmn" exporter="Camunda Modeler" exporterVersion="1.4.0" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL BPMN20.xsd">
3 <bpmn2:process id="DoDeleteVnfAndModules" name="DoDeleteVnfAndModules" isExecutable="true">
4 <bpmn2:startEvent id="StartEvent_1">
5 <bpmn2:outgoing>SequenceFlow_1</bpmn2:outgoing>
6 </bpmn2:startEvent>
7 <bpmn2:sequenceFlow id="SequenceFlow_1" name="" sourceRef="StartEvent_1" targetRef="intialization" />
8 <bpmn2:scriptTask id="intialization" name="Intialization" scriptFormat="groovy">
9 <bpmn2:incoming>SequenceFlow_1</bpmn2:incoming>
10 <bpmn2:outgoing>SequenceFlow_08nd69s</bpmn2:outgoing>
11 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
12DoDeleteVnfAndModules deleteVnfAndModules = new DoDeleteVnfAndModules()
13deleteVnfAndModules.preProcessRequest(execution)]]></bpmn2:script>
14 </bpmn2:scriptTask>
15 <bpmn2:subProcess id="javaErrorHandlingSubProcess" name="Java Exception Handling Sub Process" triggeredByEvent="true">
16 <bpmn2:endEvent id="EndEvent_4">
17 <bpmn2:incoming>SequenceFlow_19</bpmn2:incoming>
18 </bpmn2:endEvent>
19 <bpmn2:startEvent id="StartEvent_3">
20 <bpmn2:outgoing>SequenceFlow_18</bpmn2:outgoing>
21 <bpmn2:errorEventDefinition id="_ErrorEventDefinition_95" errorRef="Error_2" />
22 </bpmn2:startEvent>
23 <bpmn2:sequenceFlow id="SequenceFlow_18" name="" sourceRef="StartEvent_3" targetRef="processJavaException" />
24 <bpmn2:scriptTask id="processJavaException" name="Process Error" scriptFormat="groovy">
25 <bpmn2:incoming>SequenceFlow_18</bpmn2:incoming>
26 <bpmn2:outgoing>SequenceFlow_19</bpmn2:outgoing>
27 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.common.scripts.*
28ExceptionUtil exceptionUtil = new ExceptionUtil()
29exceptionUtil.processJavaException(execution)]]></bpmn2:script>
30 </bpmn2:scriptTask>
31 <bpmn2:sequenceFlow id="SequenceFlow_19" name="" sourceRef="processJavaException" targetRef="EndEvent_4" />
32 </bpmn2:subProcess>
33 <bpmn2:endEvent id="EndEvent_2">
34 <bpmn2:incoming>SequenceFlow_1uqlr6b</bpmn2:incoming>
35 <bpmn2:terminateEventDefinition id="_TerminateEventDefinition_36" />
36 </bpmn2:endEvent>
37 <bpmn2:exclusiveGateway id="ExclusiveGateway_1amun4k" name="Are there VF modules to delete?" default="SequenceFlow_1936oc0">
38 <bpmn2:incoming>SequenceFlow_0t4yszi</bpmn2:incoming>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -070039 <bpmn2:incoming>SequenceFlow_1tt31qu</bpmn2:incoming>
40 <bpmn2:incoming>SequenceFlow_1fccvli</bpmn2:incoming>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070041 <bpmn2:outgoing>SequenceFlow_1qrkdn3</bpmn2:outgoing>
42 <bpmn2:outgoing>SequenceFlow_1936oc0</bpmn2:outgoing>
43 </bpmn2:exclusiveGateway>
44 <bpmn2:callActivity id="DeleteVNF" name="Delete VNF" calledElement="DoDeleteVnf">
45 <bpmn2:extensionElements>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -070046 <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070047 <camunda:out source="WorkflowException" target="WorkflowException" />
48 <camunda:in source="vnfId" target="vnfId" />
49 </bpmn2:extensionElements>
50 <bpmn2:incoming>SequenceFlow_05ujwz8</bpmn2:incoming>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -070051 <bpmn2:incoming>SequenceFlow_1x25m7t</bpmn2:incoming>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070052 <bpmn2:outgoing>SequenceFlow_1uqlr6b</bpmn2:outgoing>
53 </bpmn2:callActivity>
54 <bpmn2:sequenceFlow id="SequenceFlow_08nd69s" sourceRef="intialization" targetRef="QueryVnf" />
55 <bpmn2:sequenceFlow id="SequenceFlow_1qrkdn3" name="yes" sourceRef="ExclusiveGateway_1amun4k" targetRef="PrepareModuleList">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -070056 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression" language="groovy"><![CDATA[execution.getVariable("DDVAM_nextModule") < execution.getVariable("DDVAM_moduleCount")]]></bpmn2:conditionExpression>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070057 </bpmn2:sequenceFlow>
58 <bpmn2:callActivity id="DeleteVFModule" name="Delete VF Module" calledElement="DoDeleteVfModule">
59 <bpmn2:extensionElements>
60 <camunda:in source="requestId" target="requestId" />
61 <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" />
62 <camunda:in source="vnfId" target="vnfId" />
63 <camunda:in source="DDVAM_vfModuleId" target="vfModuleId" />
64 <camunda:in source="serviceInstanceId" target="serviceInstanceId" />
65 <camunda:in source="DDVAM_vfModuleName" target="vfModuleName" />
66 <camunda:in source="DDVAM_vfModuleModelInfo" target="vfModuleModelInfo" />
67 <camunda:in source="cloudConfiguration" target="cloudConfiguration" />
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -070068 <camunda:in source="DDVAM_sdncVersion" target="sdncVersion" />
Arthur Martella62cd6aa2017-09-08 13:27:46 -040069 <camunda:in source="DDVAM_isVidRequest" target="isVidRequest" />
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -070070 <camunda:out source="WorkflowException" target="WorkflowException" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070071 </bpmn2:extensionElements>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -070072 <bpmn2:incoming>SequenceFlow_1xujrk5</bpmn2:incoming>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070073 <bpmn2:outgoing>SequenceFlow_1p4ycii</bpmn2:outgoing>
74 </bpmn2:callActivity>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -070075 <bpmn2:exclusiveGateway id="ExclusiveGateway_0189gqf" name="Is SDNC Interaction Enabled?" default="SequenceFlow_05ujwz8">
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070076 <bpmn2:incoming>SequenceFlow_1936oc0</bpmn2:incoming>
77 <bpmn2:outgoing>SequenceFlow_05ujwz8</bpmn2:outgoing>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -070078 <bpmn2:outgoing>SDNCInteractionEnabled2</bpmn2:outgoing>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070079 </bpmn2:exclusiveGateway>
80 <bpmn2:sequenceFlow id="SequenceFlow_1p4ycii" sourceRef="DeleteVFModule" targetRef="PostProcessDeleteVfModule" />
81 <bpmn2:sequenceFlow id="SequenceFlow_0t4yszi" sourceRef="PostProcessDeleteVfModule" targetRef="ExclusiveGateway_1amun4k" />
82 <bpmn2:sequenceFlow id="SequenceFlow_1936oc0" name="no" sourceRef="ExclusiveGateway_1amun4k" targetRef="ExclusiveGateway_0189gqf" />
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -070083 <bpmn2:sequenceFlow id="SequenceFlow_05ujwz8" name="no" sourceRef="ExclusiveGateway_0189gqf" targetRef="DeleteVNF" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070084 <bpmn2:sequenceFlow id="SequenceFlow_1uqlr6b" sourceRef="DeleteVNF" targetRef="EndEvent_2" />
85 <bpmn2:scriptTask id="QueryVnf" name="Query VNF" scriptFormat="groovy">
86 <bpmn2:incoming>SequenceFlow_08nd69s</bpmn2:incoming>
87 <bpmn2:outgoing>SequenceFlow_0lu7b1v</bpmn2:outgoing>
88 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
89def ddvam = new DoDeleteVnfAndModules()
90ddvam.queryAAIVfModule(execution)]]></bpmn2:script>
91 </bpmn2:scriptTask>
92 <bpmn2:scriptTask id="PrepareModuleList" name="Prepare Next Module To Delete" scriptFormat="groovy">
93 <bpmn2:incoming>SequenceFlow_1qrkdn3</bpmn2:incoming>
94 <bpmn2:outgoing>SequenceFlow_1qoor0l</bpmn2:outgoing>
95 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
96def ddvam = new DoDeleteVnfAndModules()
97ddvam.prepareNextModuleToDelete(execution)]]></bpmn2:script>
98 </bpmn2:scriptTask>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -070099 <bpmn2:sequenceFlow id="SequenceFlow_0lu7b1v" sourceRef="QueryVnf" targetRef="ExclusiveGateway_027lai5" />
100 <bpmn2:sequenceFlow id="SequenceFlow_1qoor0l" sourceRef="PrepareModuleList" targetRef="ExclusiveGateway_0b36mti" />
101 <bpmn2:scriptTask id="PostProcessDeleteVfModule" name="PostProcess Delete VF Module" scriptFormat="groovy">
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700102 <bpmn2:incoming>SequenceFlow_1p4ycii</bpmn2:incoming>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700103 <bpmn2:incoming>SequenceFlow_0xl033m</bpmn2:incoming>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700104 <bpmn2:outgoing>SequenceFlow_0t4yszi</bpmn2:outgoing>
105 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700106int nextModule = execution.getVariable("DDVAM_nextModule")
107 execution.setVariable("DDVAM_nextModule", nextModule + 1)]]></bpmn2:script>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700108 </bpmn2:scriptTask>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700109 <bpmn2:exclusiveGateway id="ExclusiveGateway_027lai5" name="Is SDNC Interaction Enabled?" default="SequenceFlow_1tt31qu">
110 <bpmn2:incoming>SequenceFlow_0lu7b1v</bpmn2:incoming>
111 <bpmn2:outgoing>SequenceFlow_1tt31qu</bpmn2:outgoing>
112 <bpmn2:outgoing>SDNCInteractionEnabled1</bpmn2:outgoing>
113 </bpmn2:exclusiveGateway>
114 <bpmn2:sequenceFlow id="SequenceFlow_1tt31qu" name="no" sourceRef="ExclusiveGateway_027lai5" targetRef="ExclusiveGateway_1amun4k" />
115 <bpmn2:sequenceFlow id="SDNCInteractionEnabled1" name="yes" sourceRef="ExclusiveGateway_027lai5" targetRef="preProcessSDNCDeactivateRequest">
116 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("DDVAM_sdncVersion" ) != '1702'}]]></bpmn2:conditionExpression>
117 </bpmn2:sequenceFlow>
118 <bpmn2:sequenceFlow id="SequenceFlow_0fhhsyo" sourceRef="preProcessSDNCDeactivateRequest" targetRef="callSDNCAdapterTopologyDeactivate" />
119 <bpmn2:sequenceFlow id="SequenceFlow_0qdn8k4" sourceRef="callSDNCAdapterTopologyDeactivate" targetRef="postProcessSDNCDeactivateRequest" />
120 <bpmn2:sequenceFlow id="SequenceFlow_1fccvli" sourceRef="postProcessSDNCDeactivateRequest" targetRef="ExclusiveGateway_1amun4k" />
121 <bpmn2:scriptTask id="preProcessSDNCDeactivateRequest" name="PreProcess SDNC Deactivate Request" scriptFormat="groovy">
122 <bpmn2:incoming>SDNCInteractionEnabled1</bpmn2:incoming>
123 <bpmn2:outgoing>SequenceFlow_0fhhsyo</bpmn2:outgoing>
124 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
125def ddvam = new DoDeleteVnfAndModules()
126ddvam.preProcessSDNCDeactivateRequest(execution)]]></bpmn2:script>
127 </bpmn2:scriptTask>
128 <bpmn2:scriptTask id="postProcessSDNCDeactivateRequest" name="PostProcess SDNC Deactivate Request" scriptFormat="groovy">
129 <bpmn2:incoming>SequenceFlow_0qdn8k4</bpmn2:incoming>
130 <bpmn2:outgoing>SequenceFlow_1fccvli</bpmn2:outgoing>
131 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
132def ddvam = new DoDeleteVnfAndModules()
133String response = execution.getVariable("DDVAM_deactivateSDNCAdapterResponse")
134ddvam.validateSDNCResponse(execution, response, "deactivate")]]></bpmn2:script>
135 </bpmn2:scriptTask>
136 <bpmn2:callActivity id="callSDNCAdapterTopologyDeactivate" name="Call SDNC Adapter Topology Deactivate" calledElement="sdncAdapter">
137 <bpmn2:extensionElements>
138 <camunda:in source="DDVAM_deactivateSDNCRequest" target="sdncAdapterWorkflowRequest" />
139 <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" />
140 <camunda:in source="mso-request-id" target="mso-request-id" />
141 <camunda:in source="mso-service-instance-id" target="mso-service-instance-id" />
142 <camunda:out source="WorkflowException" target="WorkflowException" />
143 <camunda:out source="sdncAdapterResponse" target="DDVAM_deactivateSDNCAdapterResponse" />
144 <camunda:out source="SDNCA_SuccessIndicator" target="SDNCA_SuccessIndicator" />
145 </bpmn2:extensionElements>
146 <bpmn2:incoming>SequenceFlow_0fhhsyo</bpmn2:incoming>
147 <bpmn2:outgoing>SequenceFlow_0qdn8k4</bpmn2:outgoing>
148 </bpmn2:callActivity>
149 <bpmn2:sequenceFlow id="SDNCInteractionEnabled2" name="yes" sourceRef="ExclusiveGateway_0189gqf" targetRef="preProcessSDNCUnassignRequest">
150 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("DDVAM_sdncVersion" ) != '1702'}]]></bpmn2:conditionExpression>
151 </bpmn2:sequenceFlow>
152 <bpmn2:sequenceFlow id="SequenceFlow_001uxa1" sourceRef="preProcessSDNCUnassignRequest" targetRef="callSDNCAdapterTopologyUnassign" />
153 <bpmn2:sequenceFlow id="SequenceFlow_1x29mht" sourceRef="callSDNCAdapterTopologyUnassign" targetRef="postProcessSDNCUnassignRequest" />
154 <bpmn2:sequenceFlow id="SequenceFlow_1x25m7t" sourceRef="postProcessSDNCUnassignRequest" targetRef="DeleteVNF" />
155 <bpmn2:scriptTask id="preProcessSDNCUnassignRequest" name="PreProcess SDNC Unassign Request" scriptFormat="groovy">
156 <bpmn2:incoming>SDNCInteractionEnabled2</bpmn2:incoming>
157 <bpmn2:outgoing>SequenceFlow_001uxa1</bpmn2:outgoing>
158 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
159def ddvam = new DoDeleteVnfAndModules()
160ddvam.preProcessSDNCUnassignRequest(execution)]]></bpmn2:script>
161 </bpmn2:scriptTask>
162 <bpmn2:callActivity id="callSDNCAdapterTopologyUnassign" name="Call SDNC Adapter Topology Unassign" calledElement="sdncAdapter">
163 <bpmn2:extensionElements>
164 <camunda:in source="DDVAM_unassignSDNCRequest" target="sdncAdapterWorkflowRequest" />
165 <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" />
166 <camunda:in source="mso-request-id" target="mso-request-id" />
167 <camunda:in source="mso-service-instance-id" target="mso-service-instance-id" />
168 <camunda:out source="WorkflowException" target="WorkflowException" />
169 <camunda:out source="sdncAdapterResponse" target="DDVAM_unassignSDNCAdapterResponse" />
170 <camunda:out source="SDNCA_SuccessIndicator" target="SDNCA_SuccessIndicator" />
171 </bpmn2:extensionElements>
172 <bpmn2:incoming>SequenceFlow_001uxa1</bpmn2:incoming>
173 <bpmn2:outgoing>SequenceFlow_1x29mht</bpmn2:outgoing>
174 </bpmn2:callActivity>
175 <bpmn2:scriptTask id="postProcessSDNCUnassignRequest" name="PostProcess SDNC Unassign Request" scriptFormat="groovy">
176 <bpmn2:incoming>SequenceFlow_1x29mht</bpmn2:incoming>
177 <bpmn2:outgoing>SequenceFlow_1x25m7t</bpmn2:outgoing>
178 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
179def ddvam = new DoDeleteVnfAndModules()
180String response = execution.getVariable("DDVAM_unassignSDNCAdapterResponse")
181ddvam.validateSDNCResponse(execution, response, "unassign")]]></bpmn2:script>
182 </bpmn2:scriptTask>
183 <bpmn2:exclusiveGateway id="ExclusiveGateway_0b36mti" name="Is SDNC Interaction Enabled?" default="SequenceFlow_1xujrk5">
184 <bpmn2:incoming>SequenceFlow_1qoor0l</bpmn2:incoming>
185 <bpmn2:outgoing>SequenceFlow_1xujrk5</bpmn2:outgoing>
186 <bpmn2:outgoing>SequenceFlow_1laeenc</bpmn2:outgoing>
187 </bpmn2:exclusiveGateway>
188 <bpmn2:callActivity id="DoDeleteVfModuleFromVnf" name="Deiete VF Module From VNF" calledElement="DoDeleteVfModuleFromVnf">
189 <bpmn2:extensionElements>
190 <camunda:in source="msoRequestId" target="msoRequestId" />
191 <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" />
192 <camunda:in source="serviceInstanceId" target="serviceInstanceId" />
193 <camunda:in source="vnfId" target="vnfId" />
194 <camunda:in source="lcpCloudRegionId" target="lcpCloudRegionId" />
195 <camunda:in source="tenantId" target="tenantId" />
196 <camunda:in source="DDVAM_sdncVersion" target="sdncVersion" />
197 <camunda:out source="WorkflowException" target="WorkflowException" />
198 <camunda:in source="DDVAM_vfModuleId" target="vfModuleId" />
199 </bpmn2:extensionElements>
200 <bpmn2:incoming>SequenceFlow_1laeenc</bpmn2:incoming>
201 <bpmn2:outgoing>SequenceFlow_0xl033m</bpmn2:outgoing>
202 </bpmn2:callActivity>
203 <bpmn2:sequenceFlow id="SequenceFlow_1xujrk5" name="no" sourceRef="ExclusiveGateway_0b36mti" targetRef="DeleteVFModule" />
204 <bpmn2:sequenceFlow id="SequenceFlow_1laeenc" name="yes" sourceRef="ExclusiveGateway_0b36mti" targetRef="DoDeleteVfModuleFromVnf">
205 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("DDVAM_sdncVersion" ) != '1702'}]]></bpmn2:conditionExpression>
206 </bpmn2:sequenceFlow>
207 <bpmn2:sequenceFlow id="SequenceFlow_0xl033m" sourceRef="DoDeleteVfModuleFromVnf" targetRef="PostProcessDeleteVfModule" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700208 </bpmn2:process>
209 <bpmn2:error id="Error_1" name="MSO Workflow Exception" errorCode="MSOWorkflowException" />
210 <bpmn2:error id="Error_2" name="Java Lang Exception" errorCode="java.lang.Exception" />
211 <bpmndi:BPMNDiagram id="BPMNDiagram_1">
212 <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="DoDeleteVnfAndModules">
213 <bpmndi:BPMNShape id="_BPMNShape_StartEvent_79" bpmnElement="StartEvent_1">
214 <dc:Bounds x="238" y="209" width="36" height="36" />
215 <bpmndi:BPMNLabel>
216 <dc:Bounds x="256" y="250" width="0" height="0" />
217 </bpmndi:BPMNLabel>
218 </bpmndi:BPMNShape>
219 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_311" bpmnElement="intialization">
220 <dc:Bounds x="344" y="187" width="100" height="80" />
221 </bpmndi:BPMNShape>
222 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_1" bpmnElement="SequenceFlow_1" sourceElement="_BPMNShape_StartEvent_79" targetElement="_BPMNShape_ScriptTask_311">
223 <di:waypoint xsi:type="dc:Point" x="274" y="227" />
224 <di:waypoint xsi:type="dc:Point" x="344" y="228" />
225 <bpmndi:BPMNLabel>
226 <dc:Bounds x="309" y="212.5" width="0" height="0" />
227 </bpmndi:BPMNLabel>
228 </bpmndi:BPMNEdge>
229 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_237" bpmnElement="EndEvent_2">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700230 <dc:Bounds x="1983" y="372" width="36" height="36" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700231 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700232 <dc:Bounds x="2001" y="413" width="0" height="0" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700233 </bpmndi:BPMNLabel>
234 </bpmndi:BPMNShape>
235 <bpmndi:BPMNShape id="_BPMNShape_SubProcess_35" bpmnElement="javaErrorHandlingSubProcess" isExpanded="true">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700236 <dc:Bounds x="229" y="616" width="431" height="157" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700237 </bpmndi:BPMNShape>
238 <bpmndi:BPMNShape id="_BPMNShape_StartEvent_81" bpmnElement="StartEvent_3">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700239 <dc:Bounds x="377" y="677" width="36" height="36" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700240 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700241 <dc:Bounds x="395" y="718" width="0" height="0" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700242 </bpmndi:BPMNLabel>
243 </bpmndi:BPMNShape>
244 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_239" bpmnElement="EndEvent_4">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700245 <dc:Bounds x="593" y="677" width="36" height="36" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700246 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700247 <dc:Bounds x="611" y="718" width="0" height="0" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700248 </bpmndi:BPMNLabel>
249 </bpmndi:BPMNShape>
250 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_319" bpmnElement="processJavaException">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700251 <dc:Bounds x="447" y="655" width="100" height="80" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700252 </bpmndi:BPMNShape>
253 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_20" bpmnElement="SequenceFlow_18" sourceElement="_BPMNShape_StartEvent_81" targetElement="_BPMNShape_ScriptTask_319">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700254 <di:waypoint xsi:type="dc:Point" x="413" y="695" />
255 <di:waypoint xsi:type="dc:Point" x="447" y="695" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700256 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700257 <dc:Bounds x="430" y="680" width="0" height="0" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700258 </bpmndi:BPMNLabel>
259 </bpmndi:BPMNEdge>
260 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_21" bpmnElement="SequenceFlow_19" sourceElement="_BPMNShape_ScriptTask_319" targetElement="_BPMNShape_EndEvent_239">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700261 <di:waypoint xsi:type="dc:Point" x="547" y="695" />
262 <di:waypoint xsi:type="dc:Point" x="593" y="695" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700263 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700264 <dc:Bounds x="570" y="680" width="0" height="0" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700265 </bpmndi:BPMNLabel>
266 </bpmndi:BPMNEdge>
267 <bpmndi:BPMNShape id="ExclusiveGateway_1amun4k_di" bpmnElement="ExclusiveGateway_1amun4k" isMarkerVisible="true">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700268 <dc:Bounds x="1271" y="200" width="50" height="50" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700269 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700270 <dc:Bounds x="1263" y="250" width="65" height="36" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700271 </bpmndi:BPMNLabel>
272 </bpmndi:BPMNShape>
273 <bpmndi:BPMNShape id="CallActivity_0laaqvh_di" bpmnElement="DeleteVNF">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700274 <dc:Bounds x="1812" y="350" width="100" height="80" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700275 </bpmndi:BPMNShape>
276 <bpmndi:BPMNEdge id="SequenceFlow_08nd69s_di" bpmnElement="SequenceFlow_08nd69s">
277 <di:waypoint xsi:type="dc:Point" x="444" y="227" />
278 <di:waypoint xsi:type="dc:Point" x="512" y="227" />
279 <bpmndi:BPMNLabel>
280 <dc:Bounds x="478" y="212" width="0" height="0" />
281 </bpmndi:BPMNLabel>
282 </bpmndi:BPMNEdge>
283 <bpmndi:BPMNEdge id="SequenceFlow_1qrkdn3_di" bpmnElement="SequenceFlow_1qrkdn3">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700284 <di:waypoint xsi:type="dc:Point" x="1296" y="200" />
285 <di:waypoint xsi:type="dc:Point" x="1296" y="102" />
286 <di:waypoint xsi:type="dc:Point" x="1368" y="102" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700287 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700288 <dc:Bounds x="1302" y="154" width="18" height="12" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700289 </bpmndi:BPMNLabel>
290 </bpmndi:BPMNEdge>
291 <bpmndi:BPMNShape id="CallActivity_0qmp9y5_di" bpmnElement="DeleteVFModule">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700292 <dc:Bounds x="1648" y="-9" width="100" height="80" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700293 </bpmndi:BPMNShape>
294 <bpmndi:BPMNShape id="ExclusiveGateway_0189gqf_di" bpmnElement="ExclusiveGateway_0189gqf" isMarkerVisible="true">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700295 <dc:Bounds x="1271" y="365" width="50" height="50" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700296 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700297 <dc:Bounds x="1302" y="319" width="54" height="36" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700298 </bpmndi:BPMNLabel>
299 </bpmndi:BPMNShape>
300 <bpmndi:BPMNEdge id="SequenceFlow_1p4ycii_di" bpmnElement="SequenceFlow_1p4ycii">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700301 <di:waypoint xsi:type="dc:Point" x="1748" y="31" />
302 <di:waypoint xsi:type="dc:Point" x="1904" y="31" />
303 <di:waypoint xsi:type="dc:Point" x="1904" y="62" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700304 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700305 <dc:Bounds x="1826" y="16" width="0" height="0" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700306 </bpmndi:BPMNLabel>
307 </bpmndi:BPMNEdge>
308 <bpmndi:BPMNEdge id="SequenceFlow_0t4yszi_di" bpmnElement="SequenceFlow_0t4yszi">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700309 <di:waypoint xsi:type="dc:Point" x="1904" y="142" />
310 <di:waypoint xsi:type="dc:Point" x="1904" y="225" />
311 <di:waypoint xsi:type="dc:Point" x="1321" y="225" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700312 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700313 <dc:Bounds x="1919" y="183.5" width="0" height="0" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700314 </bpmndi:BPMNLabel>
315 </bpmndi:BPMNEdge>
316 <bpmndi:BPMNEdge id="SequenceFlow_1936oc0_di" bpmnElement="SequenceFlow_1936oc0">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700317 <di:waypoint xsi:type="dc:Point" x="1296" y="250" />
318 <di:waypoint xsi:type="dc:Point" x="1296" y="365" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700319 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700320 <dc:Bounds x="1270" y="305.40625" width="12" height="12" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700321 </bpmndi:BPMNLabel>
322 </bpmndi:BPMNEdge>
323 <bpmndi:BPMNEdge id="SequenceFlow_05ujwz8_di" bpmnElement="SequenceFlow_05ujwz8">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700324 <di:waypoint xsi:type="dc:Point" x="1321" y="390" />
325 <di:waypoint xsi:type="dc:Point" x="1812" y="390" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700326 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700327 <dc:Bounds x="1361" y="362" width="12" height="12" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700328 </bpmndi:BPMNLabel>
329 </bpmndi:BPMNEdge>
330 <bpmndi:BPMNEdge id="SequenceFlow_1uqlr6b_di" bpmnElement="SequenceFlow_1uqlr6b">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700331 <di:waypoint xsi:type="dc:Point" x="1912" y="390" />
332 <di:waypoint xsi:type="dc:Point" x="1983" y="390" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700333 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700334 <dc:Bounds x="1948" y="375" width="0" height="0" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700335 </bpmndi:BPMNLabel>
336 </bpmndi:BPMNEdge>
337 <bpmndi:BPMNShape id="ScriptTask_12xsp2f_di" bpmnElement="QueryVnf">
338 <dc:Bounds x="512" y="187" width="100" height="80" />
339 </bpmndi:BPMNShape>
340 <bpmndi:BPMNShape id="ScriptTask_01c9qas_di" bpmnElement="PrepareModuleList">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700341 <dc:Bounds x="1368" y="62" width="100" height="80" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700342 </bpmndi:BPMNShape>
343 <bpmndi:BPMNEdge id="SequenceFlow_0lu7b1v_di" bpmnElement="SequenceFlow_0lu7b1v">
344 <di:waypoint xsi:type="dc:Point" x="612" y="227" />
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700345 <di:waypoint xsi:type="dc:Point" x="701" y="227" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700346 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700347 <dc:Bounds x="657" y="212" width="0" height="0" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700348 </bpmndi:BPMNLabel>
349 </bpmndi:BPMNEdge>
350 <bpmndi:BPMNEdge id="SequenceFlow_1qoor0l_di" bpmnElement="SequenceFlow_1qoor0l">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700351 <di:waypoint xsi:type="dc:Point" x="1468" y="102" />
352 <di:waypoint xsi:type="dc:Point" x="1525" y="102" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700353 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700354 <dc:Bounds x="1497" y="87" width="0" height="0" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700355 </bpmndi:BPMNLabel>
356 </bpmndi:BPMNEdge>
357 <bpmndi:BPMNShape id="ScriptTask_11i0rnd_di" bpmnElement="PostProcessDeleteVfModule">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700358 <dc:Bounds x="1854" y="62" width="100" height="80" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700359 </bpmndi:BPMNShape>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700360 <bpmndi:BPMNShape id="ExclusiveGateway_027lai5_di" bpmnElement="ExclusiveGateway_027lai5" isMarkerVisible="true">
361 <dc:Bounds x="701" y="202" width="50" height="50" />
362 <bpmndi:BPMNLabel>
363 <dc:Bounds x="699" y="145" width="54" height="36" />
364 </bpmndi:BPMNLabel>
365 </bpmndi:BPMNShape>
366 <bpmndi:BPMNEdge id="SequenceFlow_1tt31qu_di" bpmnElement="SequenceFlow_1tt31qu">
367 <di:waypoint xsi:type="dc:Point" x="751" y="227" />
368 <di:waypoint xsi:type="dc:Point" x="1271" y="225" />
369 <bpmndi:BPMNLabel>
370 <dc:Bounds x="1005" y="201" width="12" height="12" />
371 </bpmndi:BPMNLabel>
372 </bpmndi:BPMNEdge>
373 <bpmndi:BPMNEdge id="SequenceFlow_04lnhgt_di" bpmnElement="SDNCInteractionEnabled1">
374 <di:waypoint xsi:type="dc:Point" x="726" y="252" />
375 <di:waypoint xsi:type="dc:Point" x="726" y="337" />
376 <di:waypoint xsi:type="dc:Point" x="776" y="337" />
377 <bpmndi:BPMNLabel>
378 <dc:Bounds x="694" y="280.5" width="18" height="12" />
379 </bpmndi:BPMNLabel>
380 </bpmndi:BPMNEdge>
381 <bpmndi:BPMNEdge id="SequenceFlow_0fhhsyo_di" bpmnElement="SequenceFlow_0fhhsyo">
382 <di:waypoint xsi:type="dc:Point" x="876" y="337" />
383 <di:waypoint xsi:type="dc:Point" x="926" y="337" />
384 <bpmndi:BPMNLabel>
385 <dc:Bounds x="901" y="322" width="0" height="0" />
386 </bpmndi:BPMNLabel>
387 </bpmndi:BPMNEdge>
388 <bpmndi:BPMNEdge id="SequenceFlow_0qdn8k4_di" bpmnElement="SequenceFlow_0qdn8k4">
389 <di:waypoint xsi:type="dc:Point" x="1026" y="337" />
390 <di:waypoint xsi:type="dc:Point" x="1070" y="337" />
391 <bpmndi:BPMNLabel>
392 <dc:Bounds x="1048" y="322" width="0" height="0" />
393 </bpmndi:BPMNLabel>
394 </bpmndi:BPMNEdge>
395 <bpmndi:BPMNEdge id="SequenceFlow_1fccvli_di" bpmnElement="SequenceFlow_1fccvli">
396 <di:waypoint xsi:type="dc:Point" x="1170" y="337" />
397 <di:waypoint xsi:type="dc:Point" x="1225" y="337" />
398 <di:waypoint xsi:type="dc:Point" x="1225" y="225" />
399 <di:waypoint xsi:type="dc:Point" x="1271" y="225" />
400 <bpmndi:BPMNLabel>
401 <dc:Bounds x="1240" y="281" width="0" height="0" />
402 </bpmndi:BPMNLabel>
403 </bpmndi:BPMNEdge>
404 <bpmndi:BPMNShape id="ScriptTask_1cj4pgd_di" bpmnElement="preProcessSDNCDeactivateRequest">
405 <dc:Bounds x="776" y="297" width="100" height="80" />
406 </bpmndi:BPMNShape>
407 <bpmndi:BPMNShape id="ScriptTask_1nug5hb_di" bpmnElement="postProcessSDNCDeactivateRequest">
408 <dc:Bounds x="1070" y="297" width="100" height="80" />
409 </bpmndi:BPMNShape>
410 <bpmndi:BPMNShape id="CallActivity_0sl24xf_di" bpmnElement="callSDNCAdapterTopologyDeactivate">
411 <dc:Bounds x="926" y="297" width="100" height="80" />
412 </bpmndi:BPMNShape>
413 <bpmndi:BPMNEdge id="SequenceFlow_0ftrgor_di" bpmnElement="SDNCInteractionEnabled2">
414 <di:waypoint xsi:type="dc:Point" x="1296" y="415" />
415 <di:waypoint xsi:type="dc:Point" x="1296" y="501" />
416 <di:waypoint xsi:type="dc:Point" x="1356" y="501" />
417 <bpmndi:BPMNLabel>
418 <dc:Bounds x="1266" y="445.36046511627904" width="18" height="12" />
419 </bpmndi:BPMNLabel>
420 </bpmndi:BPMNEdge>
421 <bpmndi:BPMNEdge id="SequenceFlow_001uxa1_di" bpmnElement="SequenceFlow_001uxa1">
422 <di:waypoint xsi:type="dc:Point" x="1456" y="501" />
423 <di:waypoint xsi:type="dc:Point" x="1517" y="501" />
424 <bpmndi:BPMNLabel>
425 <dc:Bounds x="1487" y="486" width="0" height="0" />
426 </bpmndi:BPMNLabel>
427 </bpmndi:BPMNEdge>
428 <bpmndi:BPMNEdge id="SequenceFlow_1x29mht_di" bpmnElement="SequenceFlow_1x29mht">
429 <di:waypoint xsi:type="dc:Point" x="1617" y="501" />
430 <di:waypoint xsi:type="dc:Point" x="1678" y="501" />
431 <bpmndi:BPMNLabel>
432 <dc:Bounds x="1648" y="486" width="0" height="0" />
433 </bpmndi:BPMNLabel>
434 </bpmndi:BPMNEdge>
435 <bpmndi:BPMNEdge id="SequenceFlow_1x25m7t_di" bpmnElement="SequenceFlow_1x25m7t">
436 <di:waypoint xsi:type="dc:Point" x="1778" y="501" />
437 <di:waypoint xsi:type="dc:Point" x="1862" y="501" />
438 <di:waypoint xsi:type="dc:Point" x="1862" y="430" />
439 <bpmndi:BPMNLabel>
440 <dc:Bounds x="1820" y="486" width="0" height="0" />
441 </bpmndi:BPMNLabel>
442 </bpmndi:BPMNEdge>
443 <bpmndi:BPMNShape id="ScriptTask_167oslm_di" bpmnElement="preProcessSDNCUnassignRequest">
444 <dc:Bounds x="1356" y="461" width="100" height="80" />
445 </bpmndi:BPMNShape>
446 <bpmndi:BPMNShape id="CallActivity_0cv258c_di" bpmnElement="callSDNCAdapterTopologyUnassign">
447 <dc:Bounds x="1517" y="461" width="100" height="80" />
448 </bpmndi:BPMNShape>
449 <bpmndi:BPMNShape id="ScriptTask_1gb4lqf_di" bpmnElement="postProcessSDNCUnassignRequest">
450 <dc:Bounds x="1678" y="461" width="100" height="80" />
451 </bpmndi:BPMNShape>
452 <bpmndi:BPMNShape id="ExclusiveGateway_0b36mti_di" bpmnElement="ExclusiveGateway_0b36mti" isMarkerVisible="true">
453 <dc:Bounds x="1525" y="77" width="50" height="50" />
454 <bpmndi:BPMNLabel>
455 <dc:Bounds x="1581" y="84" width="54" height="36" />
456 </bpmndi:BPMNLabel>
457 </bpmndi:BPMNShape>
458 <bpmndi:BPMNShape id="CallActivity_1y4alqc_di" bpmnElement="DoDeleteVfModuleFromVnf">
459 <dc:Bounds x="1648" y="121" width="100" height="80" />
460 </bpmndi:BPMNShape>
461 <bpmndi:BPMNEdge id="SequenceFlow_1xujrk5_di" bpmnElement="SequenceFlow_1xujrk5">
462 <di:waypoint xsi:type="dc:Point" x="1550" y="77" />
463 <di:waypoint xsi:type="dc:Point" x="1550" y="31" />
464 <di:waypoint xsi:type="dc:Point" x="1648" y="31" />
465 <bpmndi:BPMNLabel>
466 <dc:Bounds x="1524" y="42" width="12" height="12" />
467 </bpmndi:BPMNLabel>
468 </bpmndi:BPMNEdge>
469 <bpmndi:BPMNEdge id="SequenceFlow_1laeenc_di" bpmnElement="SequenceFlow_1laeenc">
470 <di:waypoint xsi:type="dc:Point" x="1550" y="127" />
471 <di:waypoint xsi:type="dc:Point" x="1550" y="161" />
472 <di:waypoint xsi:type="dc:Point" x="1648" y="161" />
473 <bpmndi:BPMNLabel>
474 <dc:Bounds x="1523" y="135" width="18" height="12" />
475 </bpmndi:BPMNLabel>
476 </bpmndi:BPMNEdge>
477 <bpmndi:BPMNEdge id="SequenceFlow_0xl033m_di" bpmnElement="SequenceFlow_0xl033m">
478 <di:waypoint xsi:type="dc:Point" x="1748" y="161" />
479 <di:waypoint xsi:type="dc:Point" x="1828" y="161" />
480 <di:waypoint xsi:type="dc:Point" x="1828" y="102" />
481 <di:waypoint xsi:type="dc:Point" x="1854" y="102" />
482 <bpmndi:BPMNLabel>
483 <dc:Bounds x="1843" y="131.5" width="0" height="0" />
484 </bpmndi:BPMNLabel>
485 </bpmndi:BPMNEdge>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700486 </bpmndi:BPMNPlane>
487 </bpmndi:BPMNDiagram>
488</bpmn2:definitions>