blob: 84ab4177e21fa23670f5857d898275fb2fee1465 [file] [log] [blame]
xg353yb6b7bef2017-04-11 13:30:42 +02001<?xml version="1.0" encoding="UTF-8"?>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -07002<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="_pNTO8MRhEeWv36YLr7PC3Q" 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">
xg353yb6b7bef2017-04-11 13:30:42 +02003 <bpmn2:process id="CreateVfModuleInfra" name="CreateVfModuleInfra" isExecutable="true">
4 <bpmn2:startEvent id="StartEvent_1" name="Start">
5 <bpmn2:outgoing>SequenceFlow_1</bpmn2:outgoing>
6 </bpmn2:startEvent>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -07007 <bpmn2:sequenceFlow id="SequenceFlow_1" name="" sourceRef="StartEvent_1" targetRef="PreProcessRequest" />
xg353yb6b7bef2017-04-11 13:30:42 +02008 <bpmn2:callActivity id="DoCreateVfModuleSubprocess" name="Do Create Vf Module" calledElement="DoCreateVfModule">
9 <bpmn2:extensionElements>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -070010 <camunda:in source="CVFMI_requestId" target="msoRequestId" />
11 <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" />
12 <camunda:in source="isVidRequest" target="isVidRequest" />
Arthur Martella62cd6aa2017-09-08 13:27:46 -040013 <camunda:in source="disableRollback" target="disableRollback" />
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -070014 <camunda:out source="DCVFM_vnfId" target="CVFMI_vnfId" />
15 <camunda:out source="DCVFM_vfModuleId" target="CVFMI_vfModuleId" />
Arthur Martella62cd6aa2017-09-08 13:27:46 -040016 <camunda:out source="rollbackData" target="rollbackData" />
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -070017 <camunda:out source="WorkflowException" target="WorkflowException" />
18 <camunda:out source="WorkflowResponse" target="CVFMI_WorkflowResponse" />
19 <camunda:out source="DCVFM_vfModuleName" target="CVFMI_vfModuleName" />
20 <camunda:in source="CVFMI_vnfType" target="vnfType" />
21 <camunda:in source="CVFMI_vnfName" target="vnfName" />
22 <camunda:in source="CVFMI_vnfId" target="vnfId" />
23 <camunda:in source="CVFMI_vfModuleName" target="vfModuleName" />
24 <camunda:in source="CVFMI_vfModuleType" target="vfModuleType" />
25 <camunda:in source="CVFMI_volumeGroupId" target="volumeGroupId" />
26 <camunda:in source="CVFMI_volumeGroupName" target="volumeGroupName" />
27 <camunda:in source="CVFMI_isBaseVfModule" target="isBaseVfModule" />
28 <camunda:in source="CVFMI_asdcServiceModelVersion" target="asdcServiceModelVersion" />
29 <camunda:in source="CVFMI_serviceInstanceId" target="serviceInstanceId" />
30 <camunda:in source="CVFMI_serviceModelInfo" target="serviceModelInfo" />
31 <camunda:in source="CVFMI_vnfModelInfo" target="vnfModelInfo" />
32 <camunda:in source="CVFMI_globalSubscriberId" target="globalSubscriberId" />
33 <camunda:in source="CVFMI_sdncVersion" target="sdncVersion" />
34 <camunda:in source="CVFMI_lcpCloudRegionId" target="lcpCloudRegionId" />
35 <camunda:in source="CVFMI_tenantId" target="tenantId" />
36 <camunda:in source="CVFMI_vfModuleId" target="vfModuleId" />
37 <camunda:in source="CVFMI_vfModuleModelInfo" target="vfModuleModelInfo" />
38 <camunda:in source="CVFMI_usePreload" target="usePreload" />
39 <camunda:in source="CVFMI_vfModuleInputParams" target="vfModuleInputParams" />
xg353yb6b7bef2017-04-11 13:30:42 +020040 </bpmn2:extensionElements>
41 <bpmn2:incoming>SequenceFlow_7</bpmn2:incoming>
42 <bpmn2:outgoing>SequenceFlow_4</bpmn2:outgoing>
43 </bpmn2:callActivity>
44 <bpmn2:scriptTask id="SendResponse" name="Send Response" scriptFormat="groovy">
45 <bpmn2:incoming>SequenceFlow_3</bpmn2:incoming>
46 <bpmn2:outgoing>SequenceFlow_7</bpmn2:outgoing>
47 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
ChrisC025301d2017-01-31 11:40:03 +010048def createVfModule = new CreateVfModuleInfra()
xg353yb6b7bef2017-04-11 13:30:42 +020049createVfModule.sendResponse(execution)]]></bpmn2:script>
50 </bpmn2:scriptTask>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -070051 <bpmn2:sequenceFlow id="SequenceFlow_7" name="" sourceRef="SendResponse" targetRef="DoCreateVfModuleSubprocess" />
xg353yb6b7bef2017-04-11 13:30:42 +020052 <bpmn2:intermediateThrowEvent id="IntermediateThrowEvent_1" name="To FinishLine">
53 <bpmn2:incoming>SequenceFlow_4</bpmn2:incoming>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -070054 <bpmn2:linkEventDefinition id="_LinkEventDefinition_34" name="FinishLine" />
xg353yb6b7bef2017-04-11 13:30:42 +020055 </bpmn2:intermediateThrowEvent>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -070056 <bpmn2:sequenceFlow id="SequenceFlow_4" name="" sourceRef="DoCreateVfModuleSubprocess" targetRef="IntermediateThrowEvent_1" />
xg353yb6b7bef2017-04-11 13:30:42 +020057 <bpmn2:intermediateCatchEvent id="IntermediateCatchEvent_1" name="FinishLine">
58 <bpmn2:outgoing>SequenceFlow_5</bpmn2:outgoing>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -070059 <bpmn2:linkEventDefinition id="_LinkEventDefinition_35" name="FinishLine" />
xg353yb6b7bef2017-04-11 13:30:42 +020060 </bpmn2:intermediateCatchEvent>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -070061 <bpmn2:sequenceFlow id="SequenceFlow_5" name="" sourceRef="IntermediateCatchEvent_1" targetRef="PrepareUpdateInfraRequest" />
xg353yb6b7bef2017-04-11 13:30:42 +020062 <bpmn2:scriptTask id="PrepareUpdateInfraRequest" name="Prepare Update Infra Request" scriptFormat="groovy">
63 <bpmn2:incoming>SequenceFlow_5</bpmn2:incoming>
64 <bpmn2:outgoing>SequenceFlow_6</bpmn2:outgoing>
65 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
ChrisC025301d2017-01-31 11:40:03 +010066def createVfModule = new CreateVfModuleInfra()
xg353yb6b7bef2017-04-11 13:30:42 +020067createVfModule.prepareUpdateInfraRequest(execution)]]></bpmn2:script>
68 </bpmn2:scriptTask>
69 <bpmn2:serviceTask id="ServiceTask_1" name="Update Infra Request">
70 <bpmn2:extensionElements>
71 <camunda:connector>
72 <camunda:inputOutput>
Rob Daugherty9f48bf32017-10-19 21:42:19 -040073 <camunda:inputParameter name="url">${URN_mso_adapters_openecomp_db_endpoint}</camunda:inputParameter>
xg353yb6b7bef2017-04-11 13:30:42 +020074 <camunda:inputParameter name="headers">
75 <camunda:map>
76 <camunda:entry key="content-type">application/soap+xml</camunda:entry>
Arthur Martella62cd6aa2017-09-08 13:27:46 -040077 <camunda:entry key="Authorization">#{BasicAuthHeaderValueDB}</camunda:entry>
xg353yb6b7bef2017-04-11 13:30:42 +020078 </camunda:map>
79 </camunda:inputParameter>
80 <camunda:inputParameter name="payload">${CVFMI_updateInfraRequest}</camunda:inputParameter>
81 <camunda:inputParameter name="method">POST</camunda:inputParameter>
82 <camunda:outputParameter name="CVFMI_dbResponseCode">${statusCode}</camunda:outputParameter>
83 <camunda:outputParameter name="CVFMI_dbResponse">${response}</camunda:outputParameter>
84 </camunda:inputOutput>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -070085 <camunda:connectorId>http-connector</camunda:connectorId>
xg353yb6b7bef2017-04-11 13:30:42 +020086 </camunda:connector>
87 </bpmn2:extensionElements>
88 <bpmn2:incoming>SequenceFlow_6</bpmn2:incoming>
89 <bpmn2:outgoing>SequenceFlow_8</bpmn2:outgoing>
90 </bpmn2:serviceTask>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -070091 <bpmn2:sequenceFlow id="SequenceFlow_6" name="" sourceRef="PrepareUpdateInfraRequest" targetRef="ServiceTask_1" />
92 <bpmn2:sequenceFlow id="SequenceFlow_8" name="" sourceRef="ServiceTask_1" targetRef="UpdateInfraRequestResponseCheck" />
xg353yb6b7bef2017-04-11 13:30:42 +020093 <bpmn2:scriptTask id="PrepareMSOCompletionHandler" name="Prepare MSO Completion Handler" scriptFormat="groovy">
94 <bpmn2:incoming>updateInfraRequestResponseGood</bpmn2:incoming>
95 <bpmn2:outgoing>SequenceFlow_12</bpmn2:outgoing>
96 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
ChrisC025301d2017-01-31 11:40:03 +010097def createVfModule = new CreateVfModuleInfra()
xg353yb6b7bef2017-04-11 13:30:42 +020098createVfModule.postProcessResponse(execution)]]></bpmn2:script>
99 </bpmn2:scriptTask>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700100 <bpmn2:sequenceFlow id="SequenceFlow_12" name="" sourceRef="PrepareMSOCompletionHandler" targetRef="MSOCompletionHandler" />
xg353yb6b7bef2017-04-11 13:30:42 +0200101 <bpmn2:callActivity id="MSOCompletionHandler" name="MSO Completion Handler" calledElement="CompleteMsoProcess">
102 <bpmn2:extensionElements>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700103 <camunda:in source="CVFMI_msoCompletionRequest" target="CompleteMsoProcessRequest" />
104 <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" />
105 <camunda:in source="mso-service-instance-id" target="mso-service-instance-id" />
106 <camunda:in source="mso-request-id" target="mso-request-id" />
107 <camunda:out source="CompleteMsoProcessResponse" target="CompleteMsoProcessResponse" />
108 <camunda:out source="CMSO_ErrorResponse" target="CMSO_ErrorResponse" />
xg353yb6b7bef2017-04-11 13:30:42 +0200109 </bpmn2:extensionElements>
110 <bpmn2:incoming>SequenceFlow_12</bpmn2:incoming>
111 <bpmn2:outgoing>SequenceFlow_14</bpmn2:outgoing>
112 </bpmn2:callActivity>
113 <bpmn2:exclusiveGateway id="UpdateInfraRequestResponseCheck" name="Success? " default="updateInfraRequestResponseBad">
114 <bpmn2:incoming>SequenceFlow_8</bpmn2:incoming>
115 <bpmn2:outgoing>updateInfraRequestResponseBad</bpmn2:outgoing>
116 <bpmn2:outgoing>updateInfraRequestResponseGood</bpmn2:outgoing>
117 </bpmn2:exclusiveGateway>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700118 <bpmn2:sequenceFlow id="updateInfraRequestResponseBad" name="no" sourceRef="UpdateInfraRequestResponseCheck" targetRef="EndEvent_2" />
xg353yb6b7bef2017-04-11 13:30:42 +0200119 <bpmn2:sequenceFlow id="updateInfraRequestResponseGood" name="yes" sourceRef="UpdateInfraRequestResponseCheck" targetRef="PrepareMSOCompletionHandler">
120 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("CVFMI_dbResponseCode" ) == '200'}]]></bpmn2:conditionExpression>
121 </bpmn2:sequenceFlow>
122 <bpmn2:endEvent id="EndEvent_2">
123 <bpmn2:incoming>updateInfraRequestResponseBad</bpmn2:incoming>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700124 <bpmn2:errorEventDefinition id="_ErrorEventDefinition_2" errorRef="Error_1" />
xg353yb6b7bef2017-04-11 13:30:42 +0200125 </bpmn2:endEvent>
126 <bpmn2:subProcess id="ErrorHandler" name="Error Handler" triggeredByEvent="true">
xg353yb6b7bef2017-04-11 13:30:42 +0200127 <bpmn2:startEvent id="StartEvent_2" name="Catch All Errors">
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400128 <bpmn2:outgoing>SequenceFlow_0wsgnab</bpmn2:outgoing>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700129 <bpmn2:errorEventDefinition id="ErrorEventDefinition_1" />
xg353yb6b7bef2017-04-11 13:30:42 +0200130 </bpmn2:startEvent>
xg353yb6b7bef2017-04-11 13:30:42 +0200131 <bpmn2:callActivity id="FalloutHandler" name="Fallout Handler" calledElement="FalloutHandler">
132 <bpmn2:extensionElements>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700133 <camunda:in source="CVFMI_FalloutHandlerRequest" target="FalloutHandlerRequest" />
134 <camunda:in source="mso-request-id" target="mso-request-id" />
135 <camunda:in source="mso-service-instance-id" target="mso-service-instance-id" />
136 <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" />
xg353yb6b7bef2017-04-11 13:30:42 +0200137 </bpmn2:extensionElements>
138 <bpmn2:incoming>SequenceFlow_10</bpmn2:incoming>
139 <bpmn2:outgoing>SequenceFlow_11</bpmn2:outgoing>
140 </bpmn2:callActivity>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700141 <bpmn2:sequenceFlow id="SequenceFlow_11" name="" sourceRef="FalloutHandler" targetRef="EndEvent_3" />
xg353yb6b7bef2017-04-11 13:30:42 +0200142 <bpmn2:endEvent id="EndEvent_3">
143 <bpmn2:incoming>SequenceFlow_11</bpmn2:incoming>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700144 <bpmn2:terminateEventDefinition id="_TerminateEventDefinition_11" />
xg353yb6b7bef2017-04-11 13:30:42 +0200145 </bpmn2:endEvent>
146 <bpmn2:scriptTask id="PrepareFalloutHandler" name="Prepare Fallout Handler" scriptFormat="groovy">
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400147 <bpmn2:incoming>SequenceFlow_018p5wf</bpmn2:incoming>
xg353yb6b7bef2017-04-11 13:30:42 +0200148 <bpmn2:outgoing>SequenceFlow_10</bpmn2:outgoing>
149 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
ChrisC025301d2017-01-31 11:40:03 +0100150def cvfm = new CreateVfModuleInfra()
xg353yb6b7bef2017-04-11 13:30:42 +0200151cvfm.falloutHandlerPrep(execution, 'CVFMI_FalloutHandlerRequest')]]></bpmn2:script>
152 </bpmn2:scriptTask>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700153 <bpmn2:sequenceFlow id="SequenceFlow_10" name="" sourceRef="PrepareFalloutHandler" targetRef="FalloutHandler" />
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400154 <bpmn2:sequenceFlow id="SequenceFlow_0wsgnab" sourceRef="StartEvent_2" targetRef="SendErrorResponse" />
155 <bpmn2:sequenceFlow id="SequenceFlow_018p5wf" sourceRef="SendErrorResponse" targetRef="PrepareFalloutHandler" />
156 <bpmn2:scriptTask id="SendErrorResponse" name="Send Error Response" scriptFormat="groovy">
157 <bpmn2:incoming>SequenceFlow_0wsgnab</bpmn2:incoming>
158 <bpmn2:outgoing>SequenceFlow_018p5wf</bpmn2:outgoing>
xg353yb6b7bef2017-04-11 13:30:42 +0200159 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400160def createVfModule = new CreateVfModuleInfra()
161createVfModule.sendErrorResponse(execution)]]></bpmn2:script>
xg353yb6b7bef2017-04-11 13:30:42 +0200162 </bpmn2:scriptTask>
xg353yb6b7bef2017-04-11 13:30:42 +0200163 </bpmn2:subProcess>
164 <bpmn2:scriptTask id="SetSuccessIndicator" name="Set Success Indicator" scriptFormat="groovy">
165 <bpmn2:incoming>SequenceFlow_14</bpmn2:incoming>
166 <bpmn2:outgoing>SequenceFlow_16</bpmn2:outgoing>
167 <bpmn2:script><![CDATA[execution.setVariable("CreateVfModuleSuccessIndicator", true)]]></bpmn2:script>
168 </bpmn2:scriptTask>
169 <bpmn2:endEvent id="EndEvent_1">
170 <bpmn2:incoming>SequenceFlow_16</bpmn2:incoming>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700171 <bpmn2:terminateEventDefinition id="_TerminateEventDefinition_10" />
xg353yb6b7bef2017-04-11 13:30:42 +0200172 </bpmn2:endEvent>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700173 <bpmn2:sequenceFlow id="SequenceFlow_14" name="" sourceRef="MSOCompletionHandler" targetRef="SetSuccessIndicator" />
174 <bpmn2:sequenceFlow id="SequenceFlow_16" name="" sourceRef="SetSuccessIndicator" targetRef="EndEvent_1" />
xg353yb6b7bef2017-04-11 13:30:42 +0200175 <bpmn2:boundaryEvent id="BoundaryEvent_1" name="" attachedToRef="ErrorHandler">
176 <bpmn2:outgoing>SequenceFlow_15</bpmn2:outgoing>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700177 <bpmn2:errorEventDefinition id="_ErrorEventDefinition_3" />
xg353yb6b7bef2017-04-11 13:30:42 +0200178 </bpmn2:boundaryEvent>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700179 <bpmn2:sequenceFlow id="SequenceFlow_15" name="" sourceRef="BoundaryEvent_1" targetRef="EndEvent_4" />
xg353yb6b7bef2017-04-11 13:30:42 +0200180 <bpmn2:endEvent id="EndEvent_4">
181 <bpmn2:incoming>SequenceFlow_15</bpmn2:incoming>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700182 <bpmn2:terminateEventDefinition id="_TerminateEventDefinition_12" />
xg353yb6b7bef2017-04-11 13:30:42 +0200183 </bpmn2:endEvent>
184 <bpmn2:scriptTask id="PreProcessRequest" name="Pre-Process Request" scriptFormat="groovy">
185 <bpmn2:incoming>SequenceFlow_1</bpmn2:incoming>
186 <bpmn2:outgoing>SequenceFlow_3</bpmn2:outgoing>
187 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
ChrisC025301d2017-01-31 11:40:03 +0100188def createVfModule = new CreateVfModuleInfra()
xg353yb6b7bef2017-04-11 13:30:42 +0200189createVfModule.preProcessRequest(execution)]]></bpmn2:script>
190 </bpmn2:scriptTask>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700191 <bpmn2:sequenceFlow id="SequenceFlow_3" name="" sourceRef="PreProcessRequest" targetRef="SendResponse" />
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400192 <bpmn2:subProcess id="SubProcess_0pgv3l6" name="Java Exception Handling Sub Process" triggeredByEvent="true">
193 <bpmn2:scriptTask id="ProcessError" name="Process Error" scriptFormat="groovy">
194 <bpmn2:incoming>SequenceFlow_1qvgrvq</bpmn2:incoming>
195 <bpmn2:outgoing>SequenceFlow_1jqizzo</bpmn2:outgoing>
196 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.common.scripts.*
197ExceptionUtil exceptionUtil = new ExceptionUtil()
198exceptionUtil.processJavaException(execution)]]></bpmn2:script>
199 </bpmn2:scriptTask>
200 <bpmn2:endEvent id="EndEvent_0100eju">
201 <bpmn2:incoming>SequenceFlow_1jqizzo</bpmn2:incoming>
202 </bpmn2:endEvent>
203 <bpmn2:startEvent id="StartEvent_1mov8he">
204 <bpmn2:outgoing>SequenceFlow_1qvgrvq</bpmn2:outgoing>
205 <bpmn2:errorEventDefinition />
206 </bpmn2:startEvent>
207 <bpmn2:sequenceFlow id="SequenceFlow_1qvgrvq" name="" sourceRef="StartEvent_1mov8he" targetRef="ProcessError" />
208 <bpmn2:sequenceFlow id="SequenceFlow_1jqizzo" name="" sourceRef="ProcessError" targetRef="EndEvent_0100eju" />
209 </bpmn2:subProcess>
xg353yb6b7bef2017-04-11 13:30:42 +0200210 </bpmn2:process>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700211 <bpmn2:error id="Error_1" name="MSOWorkflowException" errorCode="MSOWorkflowException" />
212 <bpmn2:error id="Error_2" name="REST Fault" errorCode="RESTFault" />
xg353yb6b7bef2017-04-11 13:30:42 +0200213 <bpmndi:BPMNDiagram id="BPMNDiagram_1">
214 <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="CreateVfModuleInfra">
215 <bpmndi:BPMNShape id="_BPMNShape_StartEvent_50" bpmnElement="StartEvent_1">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700216 <dc:Bounds x="41" y="231" width="36" height="36" />
xg353yb6b7bef2017-04-11 13:30:42 +0200217 </bpmndi:BPMNShape>
218 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_1" bpmnElement="SequenceFlow_1" sourceElement="_BPMNShape_StartEvent_50" targetElement="_BPMNShape_ScriptTask_124">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700219 <di:waypoint xsi:type="dc:Point" x="77" y="249" />
220 <di:waypoint xsi:type="dc:Point" x="226" y="249" />
xg353yb6b7bef2017-04-11 13:30:42 +0200221 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700222 <dc:Bounds x="99" y="249" width="6" height="6" />
xg353yb6b7bef2017-04-11 13:30:42 +0200223 </bpmndi:BPMNLabel>
224 </bpmndi:BPMNEdge>
225 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_124" bpmnElement="PreProcessRequest">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700226 <dc:Bounds x="226" y="209" width="100" height="80" />
xg353yb6b7bef2017-04-11 13:30:42 +0200227 </bpmndi:BPMNShape>
228 <bpmndi:BPMNShape id="_BPMNShape_ServiceTask_86" bpmnElement="SendResponse">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700229 <dc:Bounds x="432" y="209" width="100" height="80" />
xg353yb6b7bef2017-04-11 13:30:42 +0200230 </bpmndi:BPMNShape>
231 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_3" bpmnElement="SequenceFlow_3" sourceElement="_BPMNShape_ScriptTask_124" targetElement="_BPMNShape_ServiceTask_86">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700232 <di:waypoint xsi:type="dc:Point" x="326" y="249" />
233 <di:waypoint xsi:type="dc:Point" x="432" y="249" />
xg353yb6b7bef2017-04-11 13:30:42 +0200234 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700235 <dc:Bounds x="348" y="249" width="6" height="6" />
xg353yb6b7bef2017-04-11 13:30:42 +0200236 </bpmndi:BPMNLabel>
237 </bpmndi:BPMNEdge>
238 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_178" bpmnElement="DoCreateVfModuleSubprocess">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700239 <dc:Bounds x="612" y="209" width="145" height="80" />
xg353yb6b7bef2017-04-11 13:30:42 +0200240 </bpmndi:BPMNShape>
241 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_7" bpmnElement="SequenceFlow_7" sourceElement="_BPMNShape_ServiceTask_86" targetElement="_BPMNShape_ScriptTask_178">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700242 <di:waypoint xsi:type="dc:Point" x="532" y="249" />
243 <di:waypoint xsi:type="dc:Point" x="612" y="249" />
xg353yb6b7bef2017-04-11 13:30:42 +0200244 </bpmndi:BPMNEdge>
245 <bpmndi:BPMNShape id="_BPMNShape_IntermediateThrowEvent_47" bpmnElement="IntermediateThrowEvent_1">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700246 <dc:Bounds x="823" y="231" width="36" height="36" />
xg353yb6b7bef2017-04-11 13:30:42 +0200247 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700248 <dc:Bounds x="841" y="272" width="0" height="0" />
xg353yb6b7bef2017-04-11 13:30:42 +0200249 </bpmndi:BPMNLabel>
250 </bpmndi:BPMNShape>
251 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_4" bpmnElement="SequenceFlow_4" sourceElement="_BPMNShape_ScriptTask_178" targetElement="_BPMNShape_IntermediateThrowEvent_47">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700252 <di:waypoint xsi:type="dc:Point" x="756" y="249" />
253 <di:waypoint xsi:type="dc:Point" x="823" y="249" />
xg353yb6b7bef2017-04-11 13:30:42 +0200254 </bpmndi:BPMNEdge>
255 <bpmndi:BPMNShape id="_BPMNShape_IntermediateCatchEvent_32" bpmnElement="IntermediateCatchEvent_1">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700256 <dc:Bounds x="39" y="349" width="36" height="36" />
xg353yb6b7bef2017-04-11 13:30:42 +0200257 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700258 <dc:Bounds x="25" y="390" width="65" height="22" />
xg353yb6b7bef2017-04-11 13:30:42 +0200259 </bpmndi:BPMNLabel>
260 </bpmndi:BPMNShape>
261 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_219" bpmnElement="PrepareUpdateInfraRequest">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700262 <dc:Bounds x="127" y="327" width="100" height="80" />
xg353yb6b7bef2017-04-11 13:30:42 +0200263 </bpmndi:BPMNShape>
264 <bpmndi:BPMNShape id="_BPMNShape_ServiceTask_103" bpmnElement="ServiceTask_1">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700265 <dc:Bounds x="277" y="327" width="100" height="80" />
xg353yb6b7bef2017-04-11 13:30:42 +0200266 </bpmndi:BPMNShape>
267 <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_179" bpmnElement="UpdateInfraRequestResponseCheck" isMarkerVisible="true">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700268 <dc:Bounds x="443" y="341" width="50" height="50" />
xg353yb6b7bef2017-04-11 13:30:42 +0200269 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700270 <dc:Bounds x="435" y="308" width="68" height="22" />
xg353yb6b7bef2017-04-11 13:30:42 +0200271 </bpmndi:BPMNLabel>
272 </bpmndi:BPMNShape>
273 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_220" bpmnElement="PrepareMSOCompletionHandler">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700274 <dc:Bounds x="552" y="327" width="100" height="80" />
xg353yb6b7bef2017-04-11 13:30:42 +0200275 </bpmndi:BPMNShape>
276 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_221" bpmnElement="MSOCompletionHandler">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700277 <dc:Bounds x="708" y="327" width="100" height="80" />
xg353yb6b7bef2017-04-11 13:30:42 +0200278 </bpmndi:BPMNShape>
279 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_177" bpmnElement="EndEvent_1">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700280 <dc:Bounds x="1020" y="349" width="36" height="36" />
xg353yb6b7bef2017-04-11 13:30:42 +0200281 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700282 <dc:Bounds x="1038" y="390" width="0" height="0" />
xg353yb6b7bef2017-04-11 13:30:42 +0200283 </bpmndi:BPMNLabel>
284 </bpmndi:BPMNShape>
285 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_178" bpmnElement="EndEvent_2">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700286 <dc:Bounds x="452" y="469" width="36" height="36" />
xg353yb6b7bef2017-04-11 13:30:42 +0200287 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700288 <dc:Bounds x="470" y="510" width="0" height="0" />
xg353yb6b7bef2017-04-11 13:30:42 +0200289 </bpmndi:BPMNLabel>
290 </bpmndi:BPMNShape>
291 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_5" bpmnElement="SequenceFlow_5" sourceElement="_BPMNShape_IntermediateCatchEvent_32" targetElement="_BPMNShape_ScriptTask_219">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700292 <di:waypoint xsi:type="dc:Point" x="75" y="367" />
293 <di:waypoint xsi:type="dc:Point" x="127" y="367" />
xg353yb6b7bef2017-04-11 13:30:42 +0200294 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700295 <dc:Bounds x="105" y="367" width="6" height="6" />
xg353yb6b7bef2017-04-11 13:30:42 +0200296 </bpmndi:BPMNLabel>
297 </bpmndi:BPMNEdge>
298 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_6" bpmnElement="SequenceFlow_6" sourceElement="_BPMNShape_ScriptTask_219" targetElement="_BPMNShape_ServiceTask_103">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700299 <di:waypoint xsi:type="dc:Point" x="227" y="367" />
300 <di:waypoint xsi:type="dc:Point" x="277" y="367" />
xg353yb6b7bef2017-04-11 13:30:42 +0200301 </bpmndi:BPMNEdge>
302 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_8" bpmnElement="SequenceFlow_8" sourceElement="_BPMNShape_ServiceTask_103" targetElement="_BPMNShape_ExclusiveGateway_179">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700303 <di:waypoint xsi:type="dc:Point" x="377" y="367" />
304 <di:waypoint xsi:type="dc:Point" x="410" y="367" />
305 <di:waypoint xsi:type="dc:Point" x="410" y="366" />
306 <di:waypoint xsi:type="dc:Point" x="443" y="366" />
xg353yb6b7bef2017-04-11 13:30:42 +0200307 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700308 <dc:Bounds x="407" y="366" width="6" height="6" />
xg353yb6b7bef2017-04-11 13:30:42 +0200309 </bpmndi:BPMNLabel>
310 </bpmndi:BPMNEdge>
311 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_9" bpmnElement="updateInfraRequestResponseBad" sourceElement="_BPMNShape_ExclusiveGateway_179" targetElement="_BPMNShape_EndEvent_178">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700312 <di:waypoint xsi:type="dc:Point" x="468" y="391" />
313 <di:waypoint xsi:type="dc:Point" x="469" y="421" />
314 <di:waypoint xsi:type="dc:Point" x="470" y="421" />
315 <di:waypoint xsi:type="dc:Point" x="470" y="469" />
xg353yb6b7bef2017-04-11 13:30:42 +0200316 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700317 <dc:Bounds x="459" y="419" width="20" height="22" />
xg353yb6b7bef2017-04-11 13:30:42 +0200318 </bpmndi:BPMNLabel>
319 </bpmndi:BPMNEdge>
320 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_11" bpmnElement="updateInfraRequestResponseGood" sourceElement="_BPMNShape_ExclusiveGateway_179" targetElement="_BPMNShape_ScriptTask_220">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700321 <di:waypoint xsi:type="dc:Point" x="493" y="366" />
322 <di:waypoint xsi:type="dc:Point" x="523" y="366" />
323 <di:waypoint xsi:type="dc:Point" x="523" y="367" />
324 <di:waypoint xsi:type="dc:Point" x="552" y="367" />
xg353yb6b7bef2017-04-11 13:30:42 +0200325 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700326 <dc:Bounds x="510" y="367" width="27" height="22" />
xg353yb6b7bef2017-04-11 13:30:42 +0200327 </bpmndi:BPMNLabel>
328 </bpmndi:BPMNEdge>
329 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_12" bpmnElement="SequenceFlow_12" sourceElement="_BPMNShape_ScriptTask_220" targetElement="_BPMNShape_ScriptTask_221">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700330 <di:waypoint xsi:type="dc:Point" x="652" y="367" />
331 <di:waypoint xsi:type="dc:Point" x="708" y="367" />
xg353yb6b7bef2017-04-11 13:30:42 +0200332 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700333 <dc:Bounds x="678" y="367" width="6" height="6" />
xg353yb6b7bef2017-04-11 13:30:42 +0200334 </bpmndi:BPMNLabel>
335 </bpmndi:BPMNEdge>
336 <bpmndi:BPMNShape id="_BPMNShape_SubProcess_20" bpmnElement="ErrorHandler" isExpanded="true">
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400337 <dc:Bounds x="30" y="566" width="925" height="385" />
xg353yb6b7bef2017-04-11 13:30:42 +0200338 </bpmndi:BPMNShape>
339 <bpmndi:BPMNShape id="_BPMNShape_StartEvent_54" bpmnElement="StartEvent_2">
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400340 <dc:Bounds x="139" y="720" width="36" height="36" />
xg353yb6b7bef2017-04-11 13:30:42 +0200341 <bpmndi:BPMNLabel>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400342 <dc:Bounds x="137" y="762" width="77" height="12" />
xg353yb6b7bef2017-04-11 13:30:42 +0200343 </bpmndi:BPMNLabel>
344 </bpmndi:BPMNShape>
345 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_222" bpmnElement="PrepareFalloutHandler">
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400346 <dc:Bounds x="497" y="698" width="100" height="80" />
xg353yb6b7bef2017-04-11 13:30:42 +0200347 </bpmndi:BPMNShape>
348 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_223" bpmnElement="FalloutHandler">
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400349 <dc:Bounds x="690" y="698" width="100" height="80" />
xg353yb6b7bef2017-04-11 13:30:42 +0200350 </bpmndi:BPMNShape>
351 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_179" bpmnElement="EndEvent_3">
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400352 <dc:Bounds x="846" y="720" width="36" height="36" />
xg353yb6b7bef2017-04-11 13:30:42 +0200353 <bpmndi:BPMNLabel>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400354 <dc:Bounds x="864" y="761" width="0" height="0" />
xg353yb6b7bef2017-04-11 13:30:42 +0200355 </bpmndi:BPMNLabel>
356 </bpmndi:BPMNShape>
357 <bpmndi:BPMNShape id="_BPMNShape_BoundaryEvent_44" bpmnElement="BoundaryEvent_1">
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400358 <dc:Bounds x="937" y="716" width="36" height="36" />
xg353yb6b7bef2017-04-11 13:30:42 +0200359 <bpmndi:BPMNLabel>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400360 <dc:Bounds x="955" y="757" width="0" height="0" />
xg353yb6b7bef2017-04-11 13:30:42 +0200361 </bpmndi:BPMNLabel>
362 </bpmndi:BPMNShape>
363 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_180" bpmnElement="EndEvent_4">
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400364 <dc:Bounds x="1066" y="716" width="36" height="36" />
xg353yb6b7bef2017-04-11 13:30:42 +0200365 <bpmndi:BPMNLabel>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400366 <dc:Bounds x="1084" y="757" width="0" height="0" />
xg353yb6b7bef2017-04-11 13:30:42 +0200367 </bpmndi:BPMNLabel>
368 </bpmndi:BPMNShape>
369 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_14" bpmnElement="SequenceFlow_10" sourceElement="_BPMNShape_ScriptTask_222" targetElement="_BPMNShape_ScriptTask_223">
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400370 <di:waypoint xsi:type="dc:Point" x="597" y="738" />
371 <di:waypoint xsi:type="dc:Point" x="690" y="738" />
xg353yb6b7bef2017-04-11 13:30:42 +0200372 <bpmndi:BPMNLabel>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400373 <dc:Bounds x="644" y="723" width="0" height="0" />
xg353yb6b7bef2017-04-11 13:30:42 +0200374 </bpmndi:BPMNLabel>
375 </bpmndi:BPMNEdge>
376 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_15" bpmnElement="SequenceFlow_11" sourceElement="_BPMNShape_ScriptTask_223" targetElement="_BPMNShape_EndEvent_179">
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400377 <di:waypoint xsi:type="dc:Point" x="790" y="738" />
378 <di:waypoint xsi:type="dc:Point" x="846" y="738" />
xg353yb6b7bef2017-04-11 13:30:42 +0200379 <bpmndi:BPMNLabel>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400380 <dc:Bounds x="821" y="738" width="0" height="0" />
xg353yb6b7bef2017-04-11 13:30:42 +0200381 </bpmndi:BPMNLabel>
382 </bpmndi:BPMNEdge>
383 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_17" bpmnElement="SequenceFlow_15" sourceElement="_BPMNShape_BoundaryEvent_44" targetElement="_BPMNShape_EndEvent_180">
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400384 <di:waypoint xsi:type="dc:Point" x="973" y="734" />
385 <di:waypoint xsi:type="dc:Point" x="1066" y="734" />
xg353yb6b7bef2017-04-11 13:30:42 +0200386 <bpmndi:BPMNLabel>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400387 <dc:Bounds x="1020" y="719" width="0" height="0" />
xg353yb6b7bef2017-04-11 13:30:42 +0200388 </bpmndi:BPMNLabel>
389 </bpmndi:BPMNEdge>
390 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_241" bpmnElement="SetSuccessIndicator">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700391 <dc:Bounds x="858" y="328" width="103" height="79" />
xg353yb6b7bef2017-04-11 13:30:42 +0200392 </bpmndi:BPMNShape>
393 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_16" bpmnElement="SequenceFlow_14" sourceElement="_BPMNShape_ScriptTask_221" targetElement="_BPMNShape_ScriptTask_241">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700394 <di:waypoint xsi:type="dc:Point" x="808" y="367" />
395 <di:waypoint xsi:type="dc:Point" x="858" y="367" />
xg353yb6b7bef2017-04-11 13:30:42 +0200396 </bpmndi:BPMNEdge>
397 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_18" bpmnElement="SequenceFlow_16" sourceElement="_BPMNShape_ScriptTask_241" targetElement="_BPMNShape_EndEvent_177">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700398 <di:waypoint xsi:type="dc:Point" x="960" y="367" />
399 <di:waypoint xsi:type="dc:Point" x="1020" y="367" />
xg353yb6b7bef2017-04-11 13:30:42 +0200400 </bpmndi:BPMNEdge>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400401 <bpmndi:BPMNShape id="SubProcess_0pgv3l6_di" bpmnElement="SubProcess_0pgv3l6" isExpanded="true">
402 <dc:Bounds x="160" y="1001" width="313" height="169" />
403 </bpmndi:BPMNShape>
404 <bpmndi:BPMNShape id="ScriptTask_13ekvux_di" bpmnElement="ProcessError">
405 <dc:Bounds x="268" y="1047" width="100" height="80" />
406 </bpmndi:BPMNShape>
407 <bpmndi:BPMNShape id="EndEvent_0100eju_di" bpmnElement="EndEvent_0100eju">
408 <dc:Bounds x="413" y="1069" width="36" height="36" />
xg353yb6b7bef2017-04-11 13:30:42 +0200409 <bpmndi:BPMNLabel>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400410 <dc:Bounds x="431" y="1110" width="0" height="0" />
xg353yb6b7bef2017-04-11 13:30:42 +0200411 </bpmndi:BPMNLabel>
412 </bpmndi:BPMNShape>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400413 <bpmndi:BPMNShape id="StartEvent_1mov8he_di" bpmnElement="StartEvent_1mov8he">
414 <dc:Bounds x="185" y="1069" width="36" height="36" />
xg353yb6b7bef2017-04-11 13:30:42 +0200415 <bpmndi:BPMNLabel>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400416 <dc:Bounds x="203" y="1110" width="0" height="0" />
xg353yb6b7bef2017-04-11 13:30:42 +0200417 </bpmndi:BPMNLabel>
418 </bpmndi:BPMNShape>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400419 <bpmndi:BPMNEdge id="SequenceFlow_1qvgrvq_di" bpmnElement="SequenceFlow_1qvgrvq">
420 <di:waypoint xsi:type="dc:Point" x="221" y="1087" />
421 <di:waypoint xsi:type="dc:Point" x="268" y="1087" />
xg353yb6b7bef2017-04-11 13:30:42 +0200422 <bpmndi:BPMNLabel>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400423 <dc:Bounds x="242" y="1087" width="0" height="0" />
xg353yb6b7bef2017-04-11 13:30:42 +0200424 </bpmndi:BPMNLabel>
425 </bpmndi:BPMNEdge>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400426 <bpmndi:BPMNEdge id="SequenceFlow_1jqizzo_di" bpmnElement="SequenceFlow_1jqizzo">
427 <di:waypoint xsi:type="dc:Point" x="368" y="1087" />
428 <di:waypoint xsi:type="dc:Point" x="413" y="1087" />
xg353yb6b7bef2017-04-11 13:30:42 +0200429 <bpmndi:BPMNLabel>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400430 <dc:Bounds x="388" y="1087" width="0" height="0" />
xg353yb6b7bef2017-04-11 13:30:42 +0200431 </bpmndi:BPMNLabel>
432 </bpmndi:BPMNEdge>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400433 <bpmndi:BPMNEdge id="SequenceFlow_0wsgnab_di" bpmnElement="SequenceFlow_0wsgnab">
434 <di:waypoint xsi:type="dc:Point" x="175" y="738" />
435 <di:waypoint xsi:type="dc:Point" x="235" y="738" />
436 <di:waypoint xsi:type="dc:Point" x="235" y="738" />
437 <di:waypoint xsi:type="dc:Point" x="296" y="738" />
xg353yb6b7bef2017-04-11 13:30:42 +0200438 <bpmndi:BPMNLabel>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400439 <dc:Bounds x="250" y="738" width="0" height="0" />
xg353yb6b7bef2017-04-11 13:30:42 +0200440 </bpmndi:BPMNLabel>
441 </bpmndi:BPMNEdge>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400442 <bpmndi:BPMNEdge id="SequenceFlow_018p5wf_di" bpmnElement="SequenceFlow_018p5wf">
443 <di:waypoint xsi:type="dc:Point" x="396" y="738" />
444 <di:waypoint xsi:type="dc:Point" x="497" y="738" />
xg353yb6b7bef2017-04-11 13:30:42 +0200445 <bpmndi:BPMNLabel>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400446 <dc:Bounds x="447" y="723" width="0" height="0" />
xg353yb6b7bef2017-04-11 13:30:42 +0200447 </bpmndi:BPMNLabel>
448 </bpmndi:BPMNEdge>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400449 <bpmndi:BPMNShape id="ScriptTask_036ipyg_di" bpmnElement="SendErrorResponse">
450 <dc:Bounds x="296" y="698" width="100" height="80" />
xg353yb6b7bef2017-04-11 13:30:42 +0200451 </bpmndi:BPMNShape>
xg353yb6b7bef2017-04-11 13:30:42 +0200452 </bpmndi:BPMNPlane>
453 </bpmndi:BPMNDiagram>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700454</bpmn2:definitions>