xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 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="_Wblj8GyfEeWUWLTvug7ZOg" 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"> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 3 | <bpmn2:process id="DoUpdateVfModule" name="DoUpdateVfModule" isExecutable="true"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 4 | <bpmn2:documentation><![CDATA[This flow expects its incoming request to be in the variable 'DoUpdateVfModuleRequest'. This flow produces no output.]]></bpmn2:documentation> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 5 | <bpmn2:scriptTask id="PrepareUpdateAAIVfModule_prep" name="Prepare Update AAI Vf Module (prep)" scriptFormat="groovy"> |
| 6 | <bpmn2:incoming>SequenceFlow_38</bpmn2:incoming> |
| 7 | <bpmn2:outgoing>SequenceFlow_2</bpmn2:outgoing> |
| 8 | <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.* |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 9 | def duvm = new DoUpdateVfModule() |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 10 | duvm.prepPrepareUpdateAAIVfModule(execution)]]></bpmn2:script> |
| 11 | </bpmn2:scriptTask> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 12 | <bpmn2:sequenceFlow id="SequenceFlow_2" name="" sourceRef="PrepareUpdateAAIVfModule_prep" targetRef="ScriptTask_1" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 13 | <bpmn2:callActivity id="ScriptTask_1" name="Prepare Update AAI Vf Module" calledElement="PrepareUpdateAAIVfModule"> |
| 14 | <bpmn2:extensionElements> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 15 | <camunda:in source="DOUPVfMod_prepareUpdateAAIVfModuleRequest" target="PrepareUpdateAAIVfModuleRequest" /> |
| 16 | <camunda:in source="mso-request-id" target="mso-request-id" /> |
| 17 | <camunda:in source="mso-service-instance-id" target="mso-service-instance-id" /> |
| 18 | <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" /> |
| 19 | <camunda:out source="PUAAIVfMod_outVfModule" target="DOUPVfMod_vfModule" /> |
| 20 | <camunda:out source="PUAAIVfMod_vnfName" target="DOUPVfMod_vnfNameFromAAI" /> |
| 21 | <camunda:out source="WorkflowException" target="WorkflowException" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 22 | </bpmn2:extensionElements> |
| 23 | <bpmn2:incoming>SequenceFlow_2</bpmn2:incoming> |
| 24 | <bpmn2:outgoing>SequenceFlow_15</bpmn2:outgoing> |
| 25 | </bpmn2:callActivity> |
| 26 | <bpmn2:scriptTask id="ProcessReceivedRequest" name="Process Received Request" scriptFormat="groovy"> |
| 27 | <bpmn2:incoming>SequenceFlow_1</bpmn2:incoming> |
| 28 | <bpmn2:outgoing>SequenceFlow_38</bpmn2:outgoing> |
| 29 | <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.* |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 30 | def duvm = new DoUpdateVfModule() |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 31 | duvm.preProcessRequest(execution)]]></bpmn2:script> |
| 32 | </bpmn2:scriptTask> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 33 | <bpmn2:sequenceFlow id="SequenceFlow_38" name="" sourceRef="ProcessReceivedRequest" targetRef="PrepareUpdateAAIVfModule_prep" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 34 | <bpmn2:subProcess id="SubProcess_1" name="Catch Exception" triggeredByEvent="true"> |
| 35 | <bpmn2:scriptTask id="ScriptTask_16" name="Handle Exception" scriptFormat="groovy"> |
| 36 | <bpmn2:incoming>SequenceFlow_6</bpmn2:incoming> |
| 37 | <bpmn2:outgoing>SequenceFlow_35</bpmn2:outgoing> |
| 38 | <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.* |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 39 | def duvm = new DoUpdateVfModule() |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 40 | duvm.handleWorkflowException(execution)]]></bpmn2:script> |
| 41 | </bpmn2:scriptTask> |
| 42 | <bpmn2:endEvent id="EndEvent_3"> |
| 43 | <bpmn2:incoming>SequenceFlow_35</bpmn2:incoming> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 44 | <bpmn2:terminateEventDefinition id="_TerminateEventDefinition_11" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 45 | </bpmn2:endEvent> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 46 | <bpmn2:sequenceFlow id="SequenceFlow_35" name="" sourceRef="ScriptTask_16" targetRef="EndEvent_3" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 47 | <bpmn2:startEvent id="StartEvent_3"> |
| 48 | <bpmn2:outgoing>SequenceFlow_6</bpmn2:outgoing> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 49 | <bpmn2:errorEventDefinition id="ErrorEventDefinition_2" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 50 | </bpmn2:startEvent> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 51 | <bpmn2:sequenceFlow id="SequenceFlow_6" name="" sourceRef="StartEvent_3" targetRef="ScriptTask_16" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 52 | </bpmn2:subProcess> |
| 53 | <bpmn2:endEvent id="EndEvent_5"> |
| 54 | <bpmn2:incoming>SequenceFlow_36</bpmn2:incoming> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 55 | <bpmn2:terminateEventDefinition id="_TerminateEventDefinition_12" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 56 | </bpmn2:endEvent> |
| 57 | <bpmn2:boundaryEvent id="BoundaryEvent_1" name="" attachedToRef="SubProcess_1"> |
| 58 | <bpmn2:outgoing>SequenceFlow_36</bpmn2:outgoing> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 59 | <bpmn2:errorEventDefinition id="_ErrorEventDefinition_70" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 60 | </bpmn2:boundaryEvent> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 61 | <bpmn2:sequenceFlow id="SequenceFlow_36" name="" sourceRef="BoundaryEvent_1" targetRef="EndEvent_5" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 62 | <bpmn2:scriptTask id="ScriptTask_10" name="Update AAI Vf Module (prep)" scriptFormat="groovy"> |
| 63 | <bpmn2:incoming>SequenceFlow_9</bpmn2:incoming> |
| 64 | <bpmn2:incoming>SequenceFlow_18</bpmn2:incoming> |
| 65 | <bpmn2:outgoing>SequenceFlow_25</bpmn2:outgoing> |
| 66 | <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.* |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 67 | def duvm = new DoUpdateVfModule() |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 68 | duvm.prepUpdateAAIVfModule(execution)]]></bpmn2:script> |
| 69 | </bpmn2:scriptTask> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 70 | <bpmn2:sequenceFlow id="SequenceFlow_25" name="" sourceRef="ScriptTask_10" targetRef="ScriptTask_11" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 71 | <bpmn2:callActivity id="ScriptTask_11" name="UpdateAAIVfModule" calledElement="UpdateAAIVfModule"> |
| 72 | <bpmn2:extensionElements> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 73 | <camunda:out source="WorkflowException" target="WorkflowException" /> |
| 74 | <camunda:in source="DOUPVfMod_updateAAIVfModuleRequest" target="UpdateAAIVfModuleRequest" /> |
| 75 | <camunda:in source="mso-request-id" target="mso-request-id" /> |
| 76 | <camunda:in source="mso-service-instance-id" target="mso-service-instance-id" /> |
| 77 | <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 78 | </bpmn2:extensionElements> |
| 79 | <bpmn2:incoming>SequenceFlow_25</bpmn2:incoming> |
| 80 | <bpmn2:outgoing>SequenceFlow_26</bpmn2:outgoing> |
| 81 | </bpmn2:callActivity> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 82 | <bpmn2:sequenceFlow id="SequenceFlow_26" name="" sourceRef="ScriptTask_11" targetRef="ScriptTask_12" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 83 | <bpmn2:scriptTask id="ScriptTask_12" name="SDNC Topology Activate (prep)" scriptFormat="groovy"> |
| 84 | <bpmn2:incoming>SequenceFlow_26</bpmn2:incoming> |
| 85 | <bpmn2:outgoing>SequenceFlow_27</bpmn2:outgoing> |
| 86 | <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.* |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 87 | def duvm = new DoUpdateVfModule() |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 88 | duvm.prepSDNCTopologyAct(execution)]]></bpmn2:script> |
| 89 | </bpmn2:scriptTask> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 90 | <bpmn2:sequenceFlow id="SequenceFlow_27" name="" sourceRef="ScriptTask_12" targetRef="ScriptTask_13" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 91 | <bpmn2:callActivity id="ScriptTask_13" name="SDNCAdapter Topology Activate" calledElement="sdncAdapter"> |
| 92 | <bpmn2:extensionElements> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 93 | <camunda:in source="DOUPVfMod_sdncActivateRequest" target="sdncAdapterWorkflowRequest" /> |
| 94 | <camunda:in source="mso-request-id" target="mso-request-id" /> |
| 95 | <camunda:in source="mso-service-instance-id" target="mso-service-instance-id" /> |
| 96 | <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" /> |
| 97 | <camunda:out source="WorkflowException" target="WorkflowException" /> |
| 98 | <camunda:out source="sdncAdapterResponse" target="DOUPVfMod_sdncActivateResponse" /> |
| 99 | <camunda:out source="SDNCA_SuccessIndicator" target="SDNCA_SuccessIndicator" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 100 | </bpmn2:extensionElements> |
| 101 | <bpmn2:incoming>SequenceFlow_27</bpmn2:incoming> |
| 102 | <bpmn2:outgoing>SequenceFlow_7</bpmn2:outgoing> |
| 103 | </bpmn2:callActivity> |
| 104 | <bpmn2:scriptTask id="ScriptTask_14" name="Update AAI Generic Vnf (prep)" scriptFormat="groovy"> |
| 105 | <bpmn2:incoming>SequenceFlow_24</bpmn2:incoming> |
| 106 | <bpmn2:outgoing>SequenceFlow_13</bpmn2:outgoing> |
| 107 | <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.* |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 108 | def duvm = new DoUpdateVfModule() |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 109 | duvm.prepUpdateAAIGenericVnf(execution)]]></bpmn2:script> |
| 110 | </bpmn2:scriptTask> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 111 | <bpmn2:sequenceFlow id="SequenceFlow_13" name="" sourceRef="ScriptTask_14" targetRef="ExclusiveGateway_1" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 112 | <bpmn2:callActivity id="CallActivity_1" name="UpdateAAIGenericVnf" calledElement="UpdateAAIGenericVnf"> |
| 113 | <bpmn2:extensionElements> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 114 | <camunda:in source="DOUPVfMod_updateAAIGenericVnfRequest" target="UpdateAAIGenericVnfRequest" /> |
| 115 | <camunda:in source="mso-request-id" target="mso-request-id" /> |
| 116 | <camunda:in source="mso-service-instance-id" target="mso-service-instance-id" /> |
| 117 | <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" /> |
| 118 | <camunda:out source="WorkflowException" target="WorkflowException" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 119 | </bpmn2:extensionElements> |
| 120 | <bpmn2:incoming>SequenceFlow_14</bpmn2:incoming> |
| 121 | <bpmn2:outgoing>SequenceFlow_9</bpmn2:outgoing> |
| 122 | </bpmn2:callActivity> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 123 | <bpmn2:sequenceFlow id="SequenceFlow_9" name="" sourceRef="CallActivity_1" targetRef="ScriptTask_10" /> |
| 124 | <bpmn2:exclusiveGateway id="ExclusiveGateway_1" name="Skip Update |
| 125 | Generic Vnf?" default="SequenceFlow_14"> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 126 | <bpmn2:incoming>SequenceFlow_13</bpmn2:incoming> |
| 127 | <bpmn2:outgoing>SequenceFlow_14</bpmn2:outgoing> |
| 128 | <bpmn2:outgoing>SequenceFlow_18</bpmn2:outgoing> |
| 129 | </bpmn2:exclusiveGateway> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 130 | <bpmn2:sequenceFlow id="SequenceFlow_14" name="Do the update" sourceRef="ExclusiveGateway_1" targetRef="CallActivity_1" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 131 | <bpmn2:sequenceFlow id="SequenceFlow_18" name="Skip the update" sourceRef="ExclusiveGateway_1" targetRef="ScriptTask_10"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 132 | <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression" language="groovy"><![CDATA[${execution.getVariable('DOUPVfMod_skipUpdateGenericVnf')} == true]]></bpmn2:conditionExpression> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 133 | </bpmn2:sequenceFlow> |
| 134 | <bpmn2:startEvent id="StartEvent_1" name="Start"> |
| 135 | <bpmn2:outgoing>SequenceFlow_1</bpmn2:outgoing> |
| 136 | </bpmn2:startEvent> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 137 | <bpmn2:sequenceFlow id="SequenceFlow_1" name="" sourceRef="StartEvent_1" targetRef="ProcessReceivedRequest" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 138 | <bpmn2:scriptTask id="ScriptTask_4" name="SDNC Topology Change/Assign (prep)" scriptFormat="groovy"> |
| 139 | <bpmn2:incoming>SequenceFlow_16</bpmn2:incoming> |
| 140 | <bpmn2:incoming>SequenceFlow_17</bpmn2:incoming> |
| 141 | <bpmn2:outgoing>SequenceFlow_12</bpmn2:outgoing> |
| 142 | <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.* |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 143 | def duvm = new DoUpdateVfModule() |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 144 | duvm.prepSDNCTopologyChg(execution)]]></bpmn2:script> |
| 145 | </bpmn2:scriptTask> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 146 | <bpmn2:sequenceFlow id="SequenceFlow_12" name="" sourceRef="ScriptTask_4" targetRef="ScriptTask_5" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 147 | <bpmn2:callActivity id="ScriptTask_5" name="SDNC Adapter Topology Change/Assign" calledElement="sdncAdapter"> |
| 148 | <bpmn2:extensionElements> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 149 | <camunda:in source="DOUPVfMod_sdncChangeAssignRequest" target="sdncAdapterWorkflowRequest" /> |
| 150 | <camunda:in source="mso-request-id" target="mso-request-id" /> |
| 151 | <camunda:in source="mso-service-instance-id" target="mso-service-instance-id" /> |
| 152 | <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" /> |
| 153 | <camunda:out source="WorkflowException" target="WorkflowException" /> |
| 154 | <camunda:out source="sdncAdapterResponse" target="DOUPVfMod_sdncChangeAssignResponse" /> |
| 155 | <camunda:out source="SDNCA_SuccessIndicator" target="SDNCA_SuccessIndicator" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 156 | </bpmn2:extensionElements> |
| 157 | <bpmn2:incoming>SequenceFlow_12</bpmn2:incoming> |
| 158 | <bpmn2:outgoing>SequenceFlow_3</bpmn2:outgoing> |
| 159 | </bpmn2:callActivity> |
| 160 | <bpmn2:callActivity id="ScriptTask_9" name="VnfAdapterRest" calledElement="vnfAdapterRestV1"> |
| 161 | <bpmn2:extensionElements> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 162 | <camunda:in source="DOUPVfMod_vnfAdapterRestRequest" target="vnfAdapterRestV1Request" /> |
| 163 | <camunda:in source="mso-request-id" target="mso-request-id" /> |
| 164 | <camunda:in source="mso-service-instance-id" target="mso-service-instance-id" /> |
| 165 | <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" /> |
| 166 | <camunda:out source="WorkflowException" target="WorkflowException" /> |
| 167 | <camunda:out source="vnfAdapterRestV1Response" target="DOUPVfMod_vnfAdapterRestResponse" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 168 | </bpmn2:extensionElements> |
| 169 | <bpmn2:incoming>SequenceFlow_21</bpmn2:incoming> |
| 170 | <bpmn2:outgoing>SequenceFlow_24</bpmn2:outgoing> |
| 171 | </bpmn2:callActivity> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 172 | <bpmn2:sequenceFlow id="SequenceFlow_24" name="" sourceRef="ScriptTask_9" targetRef="ScriptTask_14" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 173 | <bpmn2:scriptTask id="ScriptTask_8" name="VNF Adapter (prep)" scriptFormat="groovy"> |
| 174 | <bpmn2:incoming>SequenceFlow_23</bpmn2:incoming> |
| 175 | <bpmn2:outgoing>SequenceFlow_21</bpmn2:outgoing> |
| 176 | <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.* |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 177 | def duvm = new DoUpdateVfModule() |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 178 | duvm.prepVnfAdapterRest(execution)]]></bpmn2:script> |
| 179 | </bpmn2:scriptTask> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 180 | <bpmn2:sequenceFlow id="SequenceFlow_21" name="" sourceRef="ScriptTask_8" targetRef="ScriptTask_9" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 181 | <bpmn2:scriptTask id="ScriptTask_15" name="Validate SDNC Query Response" scriptFormat="groovy"> |
| 182 | <bpmn2:incoming>SequenceFlow_22</bpmn2:incoming> |
| 183 | <bpmn2:outgoing>SequenceFlow_23</bpmn2:outgoing> |
| 184 | <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.* |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 185 | String response = execution.getVariable("DOUPVfMod_sdncTopologyResponse") |
| 186 | def duvm = new DoUpdateVfModule() |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 187 | duvm.validateSDNCResponse(execution, response, "query")]]></bpmn2:script> |
| 188 | </bpmn2:scriptTask> |
| 189 | <bpmn2:callActivity id="ScriptTask_7" name="SDNCAdapter Topology Query" calledElement="sdncAdapter"> |
| 190 | <bpmn2:extensionElements> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 191 | <camunda:in source="DOUPVfMod_sdncTopologyRequest" target="sdncAdapterWorkflowRequest" /> |
| 192 | <camunda:in source="mso-request-id" target="mso-request-id" /> |
| 193 | <camunda:in source="mso-service-instance-id" target="mso-service-instance-id" /> |
| 194 | <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" /> |
| 195 | <camunda:out source="WorkflowException" target="WorkflowException" /> |
| 196 | <camunda:out source="sdncAdapterResponse" target="DOUPVfMod_sdncTopologyResponse" /> |
| 197 | <camunda:out source="SDNCA_SuccessIndicator" target="SDNCA_SuccessIndicator" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 198 | </bpmn2:extensionElements> |
| 199 | <bpmn2:incoming>SequenceFlow_19</bpmn2:incoming> |
| 200 | <bpmn2:outgoing>SequenceFlow_22</bpmn2:outgoing> |
| 201 | </bpmn2:callActivity> |
| 202 | <bpmn2:scriptTask id="ScriptTask_18" name="Validate SDNC Change/Assign Response" scriptFormat="groovy"> |
| 203 | <bpmn2:incoming>SequenceFlow_3</bpmn2:incoming> |
| 204 | <bpmn2:outgoing>SequenceFlow_5</bpmn2:outgoing> |
| 205 | <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.* |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 206 | String response = execution.getVariable("DOUPVfMod_sdncChangeAssignResponse") |
| 207 | def duvm = new DoUpdateVfModule() |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 208 | duvm.validateSDNCResponse(execution, response, "changeassign")]]></bpmn2:script> |
| 209 | </bpmn2:scriptTask> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 210 | <bpmn2:sequenceFlow id="SequenceFlow_3" name="" sourceRef="ScriptTask_5" targetRef="ScriptTask_18" /> |
| 211 | <bpmn2:sequenceFlow id="SequenceFlow_5" name="" sourceRef="ScriptTask_18" targetRef="ScriptTask_6" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 212 | <bpmn2:scriptTask id="ScriptTask_6" name="SDNC Topology Query (prep)" scriptFormat="groovy"> |
| 213 | <bpmn2:incoming>SequenceFlow_5</bpmn2:incoming> |
| 214 | <bpmn2:outgoing>SequenceFlow_19</bpmn2:outgoing> |
| 215 | <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.* |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 216 | def duvm = new DoUpdateVfModule() |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 217 | duvm.prepSDNCTopologyQuery(execution)]]></bpmn2:script> |
| 218 | </bpmn2:scriptTask> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 219 | <bpmn2:sequenceFlow id="SequenceFlow_19" name="" sourceRef="ScriptTask_6" targetRef="ScriptTask_7" /> |
| 220 | <bpmn2:sequenceFlow id="SequenceFlow_22" name="" sourceRef="ScriptTask_7" targetRef="ScriptTask_15" /> |
| 221 | <bpmn2:sequenceFlow id="SequenceFlow_23" name="" sourceRef="ScriptTask_15" targetRef="ScriptTask_8" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 222 | <bpmn2:exclusiveGateway id="IsBaseVfModule" name="Is Base VF Module?" default="SequenceFlow_30"> |
| 223 | <bpmn2:incoming>SequenceFlow_15</bpmn2:incoming> |
| 224 | <bpmn2:outgoing>SequenceFlow_28</bpmn2:outgoing> |
| 225 | <bpmn2:outgoing>SequenceFlow_30</bpmn2:outgoing> |
| 226 | </bpmn2:exclusiveGateway> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 227 | <bpmn2:sequenceFlow id="SequenceFlow_15" name="" sourceRef="ScriptTask_1" targetRef="IsBaseVfModule" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 228 | <bpmn2:callActivity id="ScriptTask_3" name="Confirm VolumeGroup Tenant" calledElement="ConfirmVolumeGroupTenant"> |
| 229 | <bpmn2:extensionElements> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 230 | <camunda:in source="DOUPVfMod_volumeGroupId" target="volumeGroupId" /> |
| 231 | <camunda:in source="DOUPVfMod_tenantId" target="tenantId" /> |
| 232 | <camunda:in source="DOUPVfMod_cloudRegionForVolume" target="aicCloudRegion" /> |
| 233 | <camunda:in source="mso-request-id" target="mso-request-id" /> |
| 234 | <camunda:in source="mso-service-instance-id" target="mso-service-instance-id" /> |
| 235 | <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" /> |
| 236 | <camunda:out source="WorkflowException" target="WorkflowException" /> |
| 237 | <camunda:out source="ConfirmVolumeGroupTenantResponse" target="DOUPVfMod_volumeGroupStackId" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 238 | </bpmn2:extensionElements> |
| 239 | <bpmn2:incoming>SequenceFlow_11</bpmn2:incoming> |
| 240 | <bpmn2:outgoing>SequenceFlow_17</bpmn2:outgoing> |
| 241 | </bpmn2:callActivity> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 242 | <bpmn2:sequenceFlow id="SequenceFlow_17" name="" sourceRef="ScriptTask_3" targetRef="ScriptTask_4" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 243 | <bpmn2:scriptTask id="ScriptTask_2" name="Confirm VolumeGroup Tenant (prep)" scriptFormat="groovy"> |
| 244 | <bpmn2:incoming>SequenceFlow_10</bpmn2:incoming> |
| 245 | <bpmn2:outgoing>SequenceFlow_11</bpmn2:outgoing> |
| 246 | <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.* |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 247 | def duvm = new DoUpdateVfModule() |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 248 | duvm.prepConfirmVolumeGroupTenant(execution)]]></bpmn2:script> |
| 249 | </bpmn2:scriptTask> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 250 | <bpmn2:sequenceFlow id="SequenceFlow_11" name="" sourceRef="ScriptTask_2" targetRef="ScriptTask_3" /> |
| 251 | <bpmn2:exclusiveGateway id="ExclusiveGateway_2" name="VolumeGroupId |
| 252 | present?" default="SequenceFlow_16"> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 253 | <bpmn2:incoming>SequenceFlow_29</bpmn2:incoming> |
| 254 | <bpmn2:outgoing>SequenceFlow_10</bpmn2:outgoing> |
| 255 | <bpmn2:outgoing>SequenceFlow_16</bpmn2:outgoing> |
| 256 | </bpmn2:exclusiveGateway> |
| 257 | <bpmn2:sequenceFlow id="SequenceFlow_10" name="Yes" sourceRef="ExclusiveGateway_2" targetRef="ScriptTask_2"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 258 | <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression" language="groovy"><![CDATA[${execution.getVariable('DOUPVfMod_volumeGroupId').isEmpty()} == false]]></bpmn2:conditionExpression> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 259 | </bpmn2:sequenceFlow> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 260 | <bpmn2:sequenceFlow id="SequenceFlow_16" name="No" sourceRef="ExclusiveGateway_2" targetRef="ScriptTask_4" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 261 | <bpmn2:sequenceFlow id="SequenceFlow_28" name="yes" sourceRef="IsBaseVfModule" targetRef="ExclusiveGateway_3"> |
| 262 | <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression" language="groovy"><![CDATA[execution.getVariable("DOUPVfMod_isBaseVfModule") == "true"]]></bpmn2:conditionExpression> |
| 263 | </bpmn2:sequenceFlow> |
| 264 | <bpmn2:scriptTask id="QueryAAIVfModule" name="Query AAI Vf Module" scriptFormat="groovy"> |
| 265 | <bpmn2:incoming>SequenceFlow_30</bpmn2:incoming> |
| 266 | <bpmn2:outgoing>SequenceFlow_34</bpmn2:outgoing> |
| 267 | <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.* |
| 268 | def doUpdateVfModule = new DoUpdateVfModule() |
| 269 | doUpdateVfModule.queryAAIVfModule(execution)]]></bpmn2:script> |
| 270 | </bpmn2:scriptTask> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 271 | <bpmn2:sequenceFlow id="SequenceFlow_30" name="no" sourceRef="IsBaseVfModule" targetRef="QueryAAIVfModule" /> |
| 272 | <bpmn2:sequenceFlow id="SequenceFlow_34" name="" sourceRef="QueryAAIVfModule" targetRef="ExclusiveGateway_3" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 273 | <bpmn2:exclusiveGateway id="ExclusiveGateway_3"> |
| 274 | <bpmn2:incoming>SequenceFlow_28</bpmn2:incoming> |
| 275 | <bpmn2:incoming>SequenceFlow_34</bpmn2:incoming> |
| 276 | <bpmn2:outgoing>SequenceFlow_29</bpmn2:outgoing> |
| 277 | </bpmn2:exclusiveGateway> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 278 | <bpmn2:sequenceFlow id="SequenceFlow_29" name="" sourceRef="ExclusiveGateway_3" targetRef="ExclusiveGateway_2" /> |
| 279 | <bpmn2:sequenceFlow id="SequenceFlow_7" name="" sourceRef="ScriptTask_13" targetRef="ScriptTask_19" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 280 | <bpmn2:scriptTask id="ScriptTask_19" name="PostProcess SDNC Adapter Activate" scriptFormat="groovy"> |
| 281 | <bpmn2:incoming>SequenceFlow_7</bpmn2:incoming> |
| 282 | <bpmn2:outgoing>SequenceFlow_20</bpmn2:outgoing> |
| 283 | <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.* |
| 284 | String response = execution.getVariable("DOUPVfMod_sdncActivateResponse") |
| 285 | def duvm = new DoUpdateVfModule() |
| 286 | duvm.validateSDNCResponse(execution, response, "activate")]]></bpmn2:script> |
| 287 | </bpmn2:scriptTask> |
| 288 | <bpmn2:scriptTask id="ScriptTask_17" name="Set Success Indicator" scriptFormat="groovy"> |
| 289 | <bpmn2:incoming>SequenceFlow_20</bpmn2:incoming> |
| 290 | <bpmn2:outgoing>SequenceFlow_4</bpmn2:outgoing> |
| 291 | <bpmn2:script><![CDATA[// This variable is checked by the unit test |
| 292 | execution.setVariable('DoUpdateVfModuleSuccessIndicator', true)]]></bpmn2:script> |
| 293 | </bpmn2:scriptTask> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 294 | <bpmn2:sequenceFlow id="SequenceFlow_4" name="" sourceRef="ScriptTask_17" targetRef="EndEvent_1" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 295 | <bpmn2:endEvent id="EndEvent_1" name="TheEnd"> |
| 296 | <bpmn2:incoming>SequenceFlow_4</bpmn2:incoming> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 297 | <bpmn2:terminateEventDefinition id="_TerminateEventDefinition_10" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 298 | </bpmn2:endEvent> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 299 | <bpmn2:sequenceFlow id="SequenceFlow_20" name="" sourceRef="ScriptTask_19" targetRef="ScriptTask_17" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 300 | </bpmn2:process> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 301 | <bpmn2:error id="Error_1" name="MSO Workflow Exception" errorCode="MSOWorkflowException" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 302 | <bpmndi:BPMNDiagram id="BPMNDiagram_1"> |
| 303 | <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="DoUpdateVfModule"> |
| 304 | <bpmndi:BPMNShape id="_BPMNShape_StartEvent_37" bpmnElement="StartEvent_1"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 305 | <dc:Bounds x="150" y="214" width="36" height="36" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 306 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 307 | <dc:Bounds x="151" y="255" width="34" height="22" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 308 | </bpmndi:BPMNLabel> |
| 309 | </bpmndi:BPMNShape> |
| 310 | <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_22" bpmnElement="ProcessReceivedRequest"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 311 | <dc:Bounds x="300" y="192" width="100" height="80" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 312 | </bpmndi:BPMNShape> |
| 313 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_1" bpmnElement="SequenceFlow_1" sourceElement="_BPMNShape_StartEvent_37" targetElement="_BPMNShape_ScriptTask_22"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 314 | <di:waypoint xsi:type="dc:Point" x="186" y="232" /> |
| 315 | <di:waypoint xsi:type="dc:Point" x="300" y="232" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 316 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 317 | <dc:Bounds x="208" y="232" width="6" height="6" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 318 | </bpmndi:BPMNLabel> |
| 319 | </bpmndi:BPMNEdge> |
| 320 | <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_160" bpmnElement="PrepareUpdateAAIVfModule_prep"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 321 | <dc:Bounds x="456" y="192" width="100" height="80" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 322 | </bpmndi:BPMNShape> |
| 323 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_38" bpmnElement="SequenceFlow_38" sourceElement="_BPMNShape_ScriptTask_22" targetElement="_BPMNShape_ScriptTask_160"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 324 | <di:waypoint xsi:type="dc:Point" x="400" y="232" /> |
| 325 | <di:waypoint xsi:type="dc:Point" x="456" y="232" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 326 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 327 | <dc:Bounds x="492" y="232" width="6" height="6" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 328 | </bpmndi:BPMNLabel> |
| 329 | </bpmndi:BPMNEdge> |
| 330 | <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_164" bpmnElement="ScriptTask_1"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 331 | <dc:Bounds x="624" y="192" width="100" height="80" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 332 | </bpmndi:BPMNShape> |
| 333 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_2" bpmnElement="SequenceFlow_2" sourceElement="_BPMNShape_ScriptTask_160" targetElement="_BPMNShape_ScriptTask_164"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 334 | <di:waypoint xsi:type="dc:Point" x="556" y="232" /> |
| 335 | <di:waypoint xsi:type="dc:Point" x="624" y="232" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 336 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 337 | <dc:Bounds x="575" y="232" width="6" height="6" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 338 | </bpmndi:BPMNLabel> |
| 339 | </bpmndi:BPMNEdge> |
| 340 | <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_88" bpmnElement="ExclusiveGateway_2" isMarkerVisible="true"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 341 | <dc:Bounds x="1039" y="206" width="50" height="50" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 342 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 343 | <dc:Bounds x="1011" y="172" width="109" height="38" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 344 | </bpmndi:BPMNLabel> |
| 345 | </bpmndi:BPMNShape> |
| 346 | <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_165" bpmnElement="ScriptTask_2"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 347 | <dc:Bounds x="1152" y="192" width="100" height="80" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 348 | </bpmndi:BPMNShape> |
| 349 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_10" bpmnElement="SequenceFlow_10" sourceElement="_BPMNShape_ExclusiveGateway_88" targetElement="_BPMNShape_ScriptTask_165"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 350 | <di:waypoint xsi:type="dc:Point" x="1089" y="231" /> |
| 351 | <di:waypoint xsi:type="dc:Point" x="1118" y="231" /> |
| 352 | <di:waypoint xsi:type="dc:Point" x="1118" y="232" /> |
| 353 | <di:waypoint xsi:type="dc:Point" x="1152" y="232" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 354 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 355 | <dc:Bounds x="1099" y="231" width="29" height="22" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 356 | </bpmndi:BPMNLabel> |
| 357 | </bpmndi:BPMNEdge> |
| 358 | <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_166" bpmnElement="ScriptTask_3"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 359 | <dc:Bounds x="1308" y="192" width="100" height="80" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 360 | </bpmndi:BPMNShape> |
| 361 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_11" bpmnElement="SequenceFlow_11" sourceElement="_BPMNShape_ScriptTask_165" targetElement="_BPMNShape_ScriptTask_166"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 362 | <di:waypoint xsi:type="dc:Point" x="1252" y="232" /> |
| 363 | <di:waypoint xsi:type="dc:Point" x="1308" y="232" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 364 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 365 | <dc:Bounds x="1271" y="232" width="6" height="6" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 366 | </bpmndi:BPMNLabel> |
| 367 | </bpmndi:BPMNEdge> |
| 368 | <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_167" bpmnElement="ScriptTask_4"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 369 | <dc:Bounds x="72" y="420" width="100" height="80" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 370 | </bpmndi:BPMNShape> |
| 371 | <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_168" bpmnElement="ScriptTask_5"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 372 | <dc:Bounds x="239" y="420" width="100" height="80" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 373 | </bpmndi:BPMNShape> |
| 374 | <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_169" bpmnElement="ScriptTask_6"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 375 | <dc:Bounds x="535" y="420" width="100" height="80" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 376 | </bpmndi:BPMNShape> |
| 377 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_12" bpmnElement="SequenceFlow_12" sourceElement="_BPMNShape_ScriptTask_167" targetElement="_BPMNShape_ScriptTask_168"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 378 | <di:waypoint xsi:type="dc:Point" x="172" y="460" /> |
| 379 | <di:waypoint xsi:type="dc:Point" x="239" y="460" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 380 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 381 | <dc:Bounds x="197" y="460" width="6" height="6" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 382 | </bpmndi:BPMNLabel> |
| 383 | </bpmndi:BPMNEdge> |
| 384 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_16" bpmnElement="SequenceFlow_16" sourceElement="_BPMNShape_ExclusiveGateway_88" targetElement="_BPMNShape_ScriptTask_167"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 385 | <di:waypoint xsi:type="dc:Point" x="1064" y="256" /> |
| 386 | <di:waypoint xsi:type="dc:Point" x="1064" y="351" /> |
| 387 | <di:waypoint xsi:type="dc:Point" x="122" y="351" /> |
| 388 | <di:waypoint xsi:type="dc:Point" x="122" y="420" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 389 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 390 | <dc:Bounds x="1073" y="271" width="22" height="22" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 391 | </bpmndi:BPMNLabel> |
| 392 | </bpmndi:BPMNEdge> |
| 393 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_17" bpmnElement="SequenceFlow_17" sourceElement="_BPMNShape_ScriptTask_166" targetElement="_BPMNShape_ScriptTask_167"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 394 | <di:waypoint xsi:type="dc:Point" x="1358" y="272" /> |
| 395 | <di:waypoint xsi:type="dc:Point" x="1358" y="352" /> |
| 396 | <di:waypoint xsi:type="dc:Point" x="639" y="352" /> |
| 397 | <di:waypoint xsi:type="dc:Point" x="122" y="352" /> |
| 398 | <di:waypoint xsi:type="dc:Point" x="122" y="420" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 399 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 400 | <dc:Bounds x="927" y="352" width="6" height="6" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 401 | </bpmndi:BPMNLabel> |
| 402 | </bpmndi:BPMNEdge> |
| 403 | <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_170" bpmnElement="ScriptTask_7"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 404 | <dc:Bounds x="684" y="420" width="100" height="80" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 405 | </bpmndi:BPMNShape> |
| 406 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_19" bpmnElement="SequenceFlow_19" sourceElement="_BPMNShape_ScriptTask_169" targetElement="_BPMNShape_ScriptTask_170"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 407 | <di:waypoint xsi:type="dc:Point" x="635" y="460" /> |
| 408 | <di:waypoint xsi:type="dc:Point" x="684" y="460" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 409 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 410 | <dc:Bounds x="648" y="460" width="6" height="6" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 411 | </bpmndi:BPMNLabel> |
| 412 | </bpmndi:BPMNEdge> |
| 413 | <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_171" bpmnElement="ScriptTask_8"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 414 | <dc:Bounds x="996" y="420" width="100" height="80" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 415 | </bpmndi:BPMNShape> |
| 416 | <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_172" bpmnElement="ScriptTask_9"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 417 | <dc:Bounds x="1176" y="420" width="100" height="80" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 418 | </bpmndi:BPMNShape> |
| 419 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_21" bpmnElement="SequenceFlow_21" sourceElement="_BPMNShape_ScriptTask_171" targetElement="_BPMNShape_ScriptTask_172"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 420 | <di:waypoint xsi:type="dc:Point" x="1096" y="460" /> |
| 421 | <di:waypoint xsi:type="dc:Point" x="1176" y="460" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 422 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 423 | <dc:Bounds x="1133" y="460" width="6" height="6" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 424 | </bpmndi:BPMNLabel> |
| 425 | </bpmndi:BPMNEdge> |
| 426 | <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_173" bpmnElement="ScriptTask_10"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 427 | <dc:Bounds x="466" y="636" width="100" height="80" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 428 | </bpmndi:BPMNShape> |
| 429 | <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_174" bpmnElement="ScriptTask_11"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 430 | <dc:Bounds x="624" y="636" width="100" height="80" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 431 | </bpmndi:BPMNShape> |
| 432 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_22" bpmnElement="SequenceFlow_24" sourceElement="_BPMNShape_ScriptTask_172" targetElement="_BPMNShape_ScriptTask_219"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 433 | <di:waypoint xsi:type="dc:Point" x="1226" y="500" /> |
| 434 | <di:waypoint xsi:type="dc:Point" x="1226" y="576" /> |
| 435 | <di:waypoint xsi:type="dc:Point" x="194" y="576" /> |
| 436 | <di:waypoint xsi:type="dc:Point" x="194" y="636" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 437 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 438 | <dc:Bounds x="821" y="576" width="6" height="6" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 439 | </bpmndi:BPMNLabel> |
| 440 | </bpmndi:BPMNEdge> |
| 441 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_25" bpmnElement="SequenceFlow_25" sourceElement="_BPMNShape_ScriptTask_173" targetElement="_BPMNShape_ScriptTask_174"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 442 | <di:waypoint xsi:type="dc:Point" x="566" y="676" /> |
| 443 | <di:waypoint xsi:type="dc:Point" x="624" y="676" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 444 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 445 | <dc:Bounds x="591" y="676" width="6" height="6" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 446 | </bpmndi:BPMNLabel> |
| 447 | </bpmndi:BPMNEdge> |
| 448 | <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_175" bpmnElement="ScriptTask_12"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 449 | <dc:Bounds x="804" y="636" width="100" height="80" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 450 | </bpmndi:BPMNShape> |
| 451 | <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_176" bpmnElement="ScriptTask_13"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 452 | <dc:Bounds x="984" y="636" width="100" height="80" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 453 | </bpmndi:BPMNShape> |
| 454 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_26" bpmnElement="SequenceFlow_26" sourceElement="_BPMNShape_ScriptTask_174" targetElement="_BPMNShape_ScriptTask_175"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 455 | <di:waypoint xsi:type="dc:Point" x="724" y="676" /> |
| 456 | <di:waypoint xsi:type="dc:Point" x="804" y="676" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 457 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 458 | <dc:Bounds x="695" y="674" width="6" height="6" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 459 | </bpmndi:BPMNLabel> |
| 460 | </bpmndi:BPMNEdge> |
| 461 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_27" bpmnElement="SequenceFlow_27" sourceElement="_BPMNShape_ScriptTask_175" targetElement="_BPMNShape_ScriptTask_176"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 462 | <di:waypoint xsi:type="dc:Point" x="904" y="676" /> |
| 463 | <di:waypoint xsi:type="dc:Point" x="984" y="676" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 464 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 465 | <dc:Bounds x="902" y="676" width="6" height="6" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 466 | </bpmndi:BPMNLabel> |
| 467 | </bpmndi:BPMNEdge> |
| 468 | <bpmndi:BPMNShape id="_BPMNShape_EndEvent_162" bpmnElement="EndEvent_1"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 469 | <dc:Bounds x="1208" y="906" width="36" height="36" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 470 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 471 | <dc:Bounds x="1201" y="947" width="50" height="22" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 472 | </bpmndi:BPMNLabel> |
| 473 | </bpmndi:BPMNShape> |
| 474 | <bpmndi:BPMNShape id="_BPMNShape_SubProcess_21" bpmnElement="SubProcess_1" isExpanded="true"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 475 | <dc:Bounds x="239" y="924" width="475" height="198" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 476 | </bpmndi:BPMNShape> |
| 477 | <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_179" bpmnElement="ScriptTask_16"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 478 | <dc:Bounds x="399" y="984" width="100" height="80" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 479 | </bpmndi:BPMNShape> |
| 480 | <bpmndi:BPMNShape id="_BPMNShape_EndEvent_163" bpmnElement="EndEvent_3"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 481 | <dc:Bounds x="617" y="1006" width="36" height="36" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 482 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 483 | <dc:Bounds x="635" y="1047" width="0" height="0" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 484 | </bpmndi:BPMNLabel> |
| 485 | </bpmndi:BPMNShape> |
| 486 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_35" bpmnElement="SequenceFlow_35" sourceElement="_BPMNShape_ScriptTask_179" targetElement="_BPMNShape_EndEvent_163"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 487 | <di:waypoint xsi:type="dc:Point" x="499" y="1024" /> |
| 488 | <di:waypoint xsi:type="dc:Point" x="617" y="1024" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 489 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 490 | <dc:Bounds x="555" y="1024" width="6" height="6" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 491 | </bpmndi:BPMNLabel> |
| 492 | </bpmndi:BPMNEdge> |
| 493 | <bpmndi:BPMNShape id="_BPMNShape_BoundaryEvent_46" bpmnElement="BoundaryEvent_1"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 494 | <dc:Bounds x="696" y="1005" width="36" height="36" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 495 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 496 | <dc:Bounds x="711" y="1046" width="6" height="6" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 497 | </bpmndi:BPMNLabel> |
| 498 | </bpmndi:BPMNShape> |
| 499 | <bpmndi:BPMNShape id="_BPMNShape_EndEvent_164" bpmnElement="EndEvent_5"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 500 | <dc:Bounds x="814" y="1005" width="36" height="36" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 501 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 502 | <dc:Bounds x="832" y="1046" width="0" height="0" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 503 | </bpmndi:BPMNLabel> |
| 504 | </bpmndi:BPMNShape> |
| 505 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_36" bpmnElement="SequenceFlow_36" sourceElement="_BPMNShape_BoundaryEvent_46" targetElement="_BPMNShape_EndEvent_164"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 506 | <di:waypoint xsi:type="dc:Point" x="732" y="1023" /> |
| 507 | <di:waypoint xsi:type="dc:Point" x="814" y="1023" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 508 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 509 | <dc:Bounds x="770" y="1023" width="6" height="6" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 510 | </bpmndi:BPMNLabel> |
| 511 | </bpmndi:BPMNEdge> |
| 512 | <bpmndi:BPMNShape id="_BPMNShape_StartEvent_56" bpmnElement="StartEvent_3"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 513 | <dc:Bounds x="305" y="1006" width="36" height="36" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 514 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 515 | <dc:Bounds x="323" y="1047" width="0" height="0" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 516 | </bpmndi:BPMNLabel> |
| 517 | </bpmndi:BPMNShape> |
| 518 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_6" bpmnElement="SequenceFlow_6" sourceElement="_BPMNShape_StartEvent_56" targetElement="_BPMNShape_ScriptTask_179"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 519 | <di:waypoint xsi:type="dc:Point" x="341" y="1024" /> |
| 520 | <di:waypoint xsi:type="dc:Point" x="399" y="1024" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 521 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 522 | <dc:Bounds x="302" y="1084" width="6" height="6" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 523 | </bpmndi:BPMNLabel> |
| 524 | </bpmndi:BPMNEdge> |
| 525 | <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_180" bpmnElement="ScriptTask_17"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 526 | <dc:Bounds x="1176" y="768" width="100" height="80" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 527 | </bpmndi:BPMNShape> |
| 528 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_3" bpmnElement="SequenceFlow_4" sourceElement="_BPMNShape_ScriptTask_180" targetElement="_BPMNShape_EndEvent_162"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 529 | <di:waypoint xsi:type="dc:Point" x="1226" y="848" /> |
| 530 | <di:waypoint xsi:type="dc:Point" x="1226" y="906" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 531 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 532 | <dc:Bounds x="1223" y="868" width="6" height="6" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 533 | </bpmndi:BPMNLabel> |
| 534 | </bpmndi:BPMNEdge> |
| 535 | <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_219" bpmnElement="ScriptTask_14"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 536 | <dc:Bounds x="144" y="636" width="100" height="80" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 537 | </bpmndi:BPMNShape> |
| 538 | <bpmndi:BPMNShape id="_BPMNShape_CallActivity_2" bpmnElement="CallActivity_1"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 539 | <dc:Bounds x="300" y="636" width="100" height="80" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 540 | </bpmndi:BPMNShape> |
| 541 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_9" bpmnElement="SequenceFlow_9" sourceElement="_BPMNShape_CallActivity_2" targetElement="_BPMNShape_ScriptTask_173"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 542 | <di:waypoint xsi:type="dc:Point" x="400" y="676" /> |
| 543 | <di:waypoint xsi:type="dc:Point" x="466" y="676" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 544 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 545 | <dc:Bounds x="431" y="676" width="6" height="6" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 546 | </bpmndi:BPMNLabel> |
| 547 | </bpmndi:BPMNEdge> |
| 548 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_13" bpmnElement="SequenceFlow_13" sourceElement="_BPMNShape_ScriptTask_219" targetElement="_BPMNShape_ExclusiveGateway_213"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 549 | <di:waypoint xsi:type="dc:Point" x="194" y="716" /> |
| 550 | <di:waypoint xsi:type="dc:Point" x="195" y="793" /> |
| 551 | <di:waypoint xsi:type="dc:Point" x="284" y="793" /> |
| 552 | <di:waypoint xsi:type="dc:Point" x="324" y="793" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 553 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 554 | <dc:Bounds x="191" y="746" width="6" height="6" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 555 | </bpmndi:BPMNLabel> |
| 556 | </bpmndi:BPMNEdge> |
| 557 | <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_213" bpmnElement="ExclusiveGateway_1" isMarkerVisible="true"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 558 | <dc:Bounds x="324" y="768" width="50" height="50" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 559 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 560 | <dc:Bounds x="349" y="823" width="0" height="0" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 561 | </bpmndi:BPMNLabel> |
| 562 | </bpmndi:BPMNShape> |
| 563 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_14" bpmnElement="SequenceFlow_14" sourceElement="_BPMNShape_ExclusiveGateway_213" targetElement="_BPMNShape_CallActivity_2"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 564 | <di:waypoint xsi:type="dc:Point" x="349" y="768" /> |
| 565 | <di:waypoint xsi:type="dc:Point" x="350" y="716" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 566 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 567 | <dc:Bounds x="357" y="733" width="80" height="22" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 568 | </bpmndi:BPMNLabel> |
| 569 | </bpmndi:BPMNEdge> |
| 570 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_18" bpmnElement="SequenceFlow_18" sourceElement="_BPMNShape_ExclusiveGateway_213" targetElement="_BPMNShape_ScriptTask_173"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 571 | <di:waypoint xsi:type="dc:Point" x="374" y="793" /> |
| 572 | <di:waypoint xsi:type="dc:Point" x="515" y="793" /> |
| 573 | <di:waypoint xsi:type="dc:Point" x="516" y="716" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 574 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 575 | <dc:Bounds x="380" y="768" width="97" height="22" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 576 | </bpmndi:BPMNLabel> |
| 577 | </bpmndi:BPMNEdge> |
| 578 | <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_220" bpmnElement="ScriptTask_15"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 579 | <dc:Bounds x="840" y="420" width="100" height="80" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 580 | </bpmndi:BPMNShape> |
| 581 | <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_221" bpmnElement="ScriptTask_18"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 582 | <dc:Bounds x="384" y="420" width="100" height="80" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 583 | </bpmndi:BPMNShape> |
| 584 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_4" bpmnElement="SequenceFlow_3" sourceElement="_BPMNShape_ScriptTask_168" targetElement="_BPMNShape_ScriptTask_221"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 585 | <di:waypoint xsi:type="dc:Point" x="339" y="460" /> |
| 586 | <di:waypoint xsi:type="dc:Point" x="384" y="460" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 587 | </bpmndi:BPMNEdge> |
| 588 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_5" bpmnElement="SequenceFlow_5" sourceElement="_BPMNShape_ScriptTask_221" targetElement="_BPMNShape_ScriptTask_169"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 589 | <di:waypoint xsi:type="dc:Point" x="484" y="460" /> |
| 590 | <di:waypoint xsi:type="dc:Point" x="535" y="460" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 591 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 592 | <dc:Bounds x="511" y="460" width="6" height="6" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 593 | </bpmndi:BPMNLabel> |
| 594 | </bpmndi:BPMNEdge> |
| 595 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_23" bpmnElement="SequenceFlow_22" sourceElement="_BPMNShape_ScriptTask_170" targetElement="_BPMNShape_ScriptTask_220"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 596 | <di:waypoint xsi:type="dc:Point" x="784" y="460" /> |
| 597 | <di:waypoint xsi:type="dc:Point" x="840" y="460" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 598 | </bpmndi:BPMNEdge> |
| 599 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_24" bpmnElement="SequenceFlow_23" sourceElement="_BPMNShape_ScriptTask_220" targetElement="_BPMNShape_ScriptTask_171"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 600 | <di:waypoint xsi:type="dc:Point" x="940" y="460" /> |
| 601 | <di:waypoint xsi:type="dc:Point" x="996" y="460" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 602 | </bpmndi:BPMNEdge> |
| 603 | <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_214" bpmnElement="ExclusiveGateway_3" isMarkerVisible="true"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 604 | <dc:Bounds x="965" y="206" width="50" height="50" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 605 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 606 | <dc:Bounds x="990" y="261" width="0" height="0" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 607 | </bpmndi:BPMNLabel> |
| 608 | </bpmndi:BPMNShape> |
| 609 | <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_215" bpmnElement="IsBaseVfModule" isMarkerVisible="true"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 610 | <dc:Bounds x="770" y="206" width="50" height="50" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 611 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 612 | <dc:Bounds x="795" y="261" width="0" height="0" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 613 | </bpmndi:BPMNLabel> |
| 614 | </bpmndi:BPMNShape> |
| 615 | <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_285" bpmnElement="QueryAAIVfModule"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 616 | <dc:Bounds x="849" y="72" width="100" height="80" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 617 | </bpmndi:BPMNShape> |
| 618 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_15" bpmnElement="SequenceFlow_15" sourceElement="_BPMNShape_ScriptTask_164" targetElement="_BPMNShape_ExclusiveGateway_215"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 619 | <di:waypoint xsi:type="dc:Point" x="724" y="232" /> |
| 620 | <di:waypoint xsi:type="dc:Point" x="747" y="232" /> |
| 621 | <di:waypoint xsi:type="dc:Point" x="747" y="231" /> |
| 622 | <di:waypoint xsi:type="dc:Point" x="770" y="231" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 623 | </bpmndi:BPMNEdge> |
| 624 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_28" bpmnElement="SequenceFlow_28" sourceElement="_BPMNShape_ExclusiveGateway_215" targetElement="_BPMNShape_ExclusiveGateway_214"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 625 | <di:waypoint xsi:type="dc:Point" x="820" y="231" /> |
| 626 | <di:waypoint xsi:type="dc:Point" x="965" y="231" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 627 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 628 | <dc:Bounds x="888" y="231" width="6" height="6" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 629 | </bpmndi:BPMNLabel> |
| 630 | </bpmndi:BPMNEdge> |
| 631 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_29" bpmnElement="SequenceFlow_29" sourceElement="_BPMNShape_ExclusiveGateway_214" targetElement="_BPMNShape_ExclusiveGateway_88"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 632 | <di:waypoint xsi:type="dc:Point" x="1015" y="231" /> |
| 633 | <di:waypoint xsi:type="dc:Point" x="1039" y="231" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 634 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 635 | <dc:Bounds x="1015" y="231" width="6" height="6" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 636 | </bpmndi:BPMNLabel> |
| 637 | </bpmndi:BPMNEdge> |
| 638 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_30" bpmnElement="SequenceFlow_30" sourceElement="_BPMNShape_ExclusiveGateway_215" targetElement="_BPMNShape_ScriptTask_285"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 639 | <di:waypoint xsi:type="dc:Point" x="795" y="206" /> |
| 640 | <di:waypoint xsi:type="dc:Point" x="795" y="112" /> |
| 641 | <di:waypoint xsi:type="dc:Point" x="849" y="112" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 642 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 643 | <dc:Bounds x="770" y="151" width="20" height="22" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 644 | </bpmndi:BPMNLabel> |
| 645 | </bpmndi:BPMNEdge> |
| 646 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_34" bpmnElement="SequenceFlow_34" sourceElement="_BPMNShape_ScriptTask_285" targetElement="_BPMNShape_ExclusiveGateway_214"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 647 | <di:waypoint xsi:type="dc:Point" x="949" y="112" /> |
| 648 | <di:waypoint xsi:type="dc:Point" x="966" y="112" /> |
| 649 | <di:waypoint xsi:type="dc:Point" x="990" y="112" /> |
| 650 | <di:waypoint xsi:type="dc:Point" x="990" y="206" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 651 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 652 | <dc:Bounds x="987" y="136" width="6" height="6" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 653 | </bpmndi:BPMNLabel> |
| 654 | </bpmndi:BPMNEdge> |
| 655 | <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_286" bpmnElement="ScriptTask_19"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 656 | <dc:Bounds x="1176" y="636" width="100" height="80" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 657 | </bpmndi:BPMNShape> |
| 658 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_8" bpmnElement="SequenceFlow_7" sourceElement="_BPMNShape_ScriptTask_176" targetElement="_BPMNShape_ScriptTask_286"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 659 | <di:waypoint xsi:type="dc:Point" x="1084" y="676" /> |
| 660 | <di:waypoint xsi:type="dc:Point" x="1176" y="676" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 661 | <bpmndi:BPMNLabel> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 662 | <dc:Bounds x="1121" y="676" width="6" height="6" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 663 | </bpmndi:BPMNLabel> |
| 664 | </bpmndi:BPMNEdge> |
| 665 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_20" bpmnElement="SequenceFlow_20" sourceElement="_BPMNShape_ScriptTask_286" targetElement="_BPMNShape_ScriptTask_180"> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 666 | <di:waypoint xsi:type="dc:Point" x="1226" y="716" /> |
| 667 | <di:waypoint xsi:type="dc:Point" x="1226" y="768" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 668 | </bpmndi:BPMNEdge> |
| 669 | </bpmndi:BPMNPlane> |
| 670 | </bpmndi:BPMNDiagram> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 671 | </bpmn2:definitions> |