blob: da7fc652edb5f7a4912a26a111365776dee74a22 [file] [log] [blame]
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -04001<?xml version="1.0" encoding="UTF-8"?>
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -04002<bpmn2:definitions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bpmn2="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="_9MhrcHqVEea26OhQB97uCQ" targetNamespace="http://camunda.org/schema/1.0/bpmn" exporter="Camunda Modeler" exporterVersion="1.10.0" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL BPMN20.xsd">
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -04003 <bpmn2:process id="DoDeleteVnf" name="DoDeleteVnf" isExecutable="true">
4 <bpmn2:startEvent id="StartEvent_1">
5 <bpmn2:outgoing>SequenceFlow_1</bpmn2:outgoing>
6 </bpmn2:startEvent>
7 <bpmn2:sequenceFlow id="SequenceFlow_1" name="" sourceRef="StartEvent_1" targetRef="intialization" />
8 <bpmn2:scriptTask id="intialization" name="Intialization" scriptFormat="groovy">
9 <bpmn2:incoming>SequenceFlow_1</bpmn2:incoming>
10 <bpmn2:outgoing>SequenceFlow_2</bpmn2:outgoing>
11 <bpmn2:script><![CDATA[import org.onap.so.bpmn.infrastructure.scripts.*
12DoDeleteVnf deleteVnf = new DoDeleteVnf()
13deleteVnf.preProcessRequest(execution)]]></bpmn2:script>
14 </bpmn2:scriptTask>
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -040015 <bpmn2:sequenceFlow id="SequenceFlow_2" name="" sourceRef="intialization" targetRef="processResponse" />
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040016 <bpmn2:exclusiveGateway id="vnfFoundCheck" name="Vnf Found?" default="notFound">
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -040017 <bpmn2:incoming>SequenceFlow_0hbmag5</bpmn2:incoming>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040018 <bpmn2:outgoing>vnfFound</bpmn2:outgoing>
19 <bpmn2:outgoing>notFound</bpmn2:outgoing>
20 </bpmn2:exclusiveGateway>
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -040021 <bpmn2:sequenceFlow id="vnfFound" name="Yes" sourceRef="vnfFoundCheck" targetRef="vnfInUseCheck">
22 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("GENGV_FoundIndicator") == true}]]></bpmn2:conditionExpression>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040023 </bpmn2:sequenceFlow>
24 <bpmn2:sequenceFlow id="notFound" name="No" sourceRef="vnfFoundCheck" targetRef="IntermediateThrowEvent_1" />
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -040025 <bpmn2:scriptTask id="processResponse" name="&#10;AAI&#10;Query&#10;(generic vnf)&#10;" scriptFormat="groovy">
26 <bpmn2:incoming>SequenceFlow_2</bpmn2:incoming>
27 <bpmn2:outgoing>SequenceFlow_0hbmag5</bpmn2:outgoing>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040028 <bpmn2:script><![CDATA[import org.onap.so.bpmn.infrastructure.scripts.*
29DoDeleteVnf deleteVnf = new DoDeleteVnf()
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -040030deleteVnf.getVnf(execution)]]></bpmn2:script>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040031 </bpmn2:scriptTask>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040032 <bpmn2:intermediateThrowEvent id="IntermediateThrowEvent_1" name="Skip Delete">
33 <bpmn2:incoming>notFound</bpmn2:incoming>
34 <bpmn2:linkEventDefinition id="LinkEventDefinition_1" name="Skip Delete" />
35 </bpmn2:intermediateThrowEvent>
36 <bpmn2:exclusiveGateway id="vnfInUseCheck" name="Vnf In Use?" default="notInUse">
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -040037 <bpmn2:incoming>vnfFound</bpmn2:incoming>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040038 <bpmn2:outgoing>inUse</bpmn2:outgoing>
39 <bpmn2:outgoing>notInUse</bpmn2:outgoing>
40 </bpmn2:exclusiveGateway>
41 <bpmn2:sequenceFlow id="inUse" name="Yes" sourceRef="vnfInUseCheck" targetRef="createWorkflowExceptionInUse">
42 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("DoDVNF_vnfInUse") == true}]]></bpmn2:conditionExpression>
43 </bpmn2:sequenceFlow>
44 <bpmn2:sequenceFlow id="notInUse" name="No" sourceRef="vnfInUseCheck" targetRef="deleteVnf" />
45 <bpmn2:scriptTask id="createWorkflowExceptionInUse" name="Create Workflow Exception" scriptFormat="groovy">
46 <bpmn2:incoming>inUse</bpmn2:incoming>
47 <bpmn2:outgoing>SequenceFlow_8</bpmn2:outgoing>
48 <bpmn2:script><![CDATA[import org.onap.so.bpmn.common.scripts.*
49ExceptionUtil exceptionUtil = new ExceptionUtil()
50exceptionUtil.buildAndThrowWorkflowException(execution, 5000, "Can't Delete Generic Vnf. Generic Vnf is still in use.")]]></bpmn2:script>
51 </bpmn2:scriptTask>
52 <bpmn2:sequenceFlow id="SequenceFlow_8" name="" sourceRef="createWorkflowExceptionInUse" targetRef="EndEvent_1" />
53 <bpmn2:endEvent id="EndEvent_1">
54 <bpmn2:incoming>SequenceFlow_8</bpmn2:incoming>
55 <bpmn2:errorEventDefinition id="_ErrorEventDefinition_93" errorRef="Error_1" />
56 </bpmn2:endEvent>
57 <bpmn2:sequenceFlow id="SequenceFlow_9" name="" sourceRef="deleteVnf" targetRef="ExclusiveGateway_2" />
58 <bpmn2:subProcess id="javaErrorHandlingSubProcess" name="Java Exception Handling Sub Process" triggeredByEvent="true">
59 <bpmn2:endEvent id="EndEvent_4">
60 <bpmn2:incoming>SequenceFlow_19</bpmn2:incoming>
61 </bpmn2:endEvent>
62 <bpmn2:startEvent id="StartEvent_3">
63 <bpmn2:outgoing>SequenceFlow_18</bpmn2:outgoing>
64 <bpmn2:errorEventDefinition id="_ErrorEventDefinition_95" errorRef="Error_2" />
65 </bpmn2:startEvent>
66 <bpmn2:sequenceFlow id="SequenceFlow_18" name="" sourceRef="StartEvent_3" targetRef="processJavaException" />
67 <bpmn2:scriptTask id="processJavaException" name="Process Error" scriptFormat="groovy">
68 <bpmn2:incoming>SequenceFlow_18</bpmn2:incoming>
69 <bpmn2:outgoing>SequenceFlow_19</bpmn2:outgoing>
70 <bpmn2:script><![CDATA[import org.onap.so.bpmn.common.scripts.*
71ExceptionUtil exceptionUtil = new ExceptionUtil()
72exceptionUtil.processJavaException(execution)]]></bpmn2:script>
73 </bpmn2:scriptTask>
74 <bpmn2:sequenceFlow id="SequenceFlow_19" name="" sourceRef="processJavaException" targetRef="EndEvent_4" />
75 </bpmn2:subProcess>
76 <bpmn2:exclusiveGateway id="ExclusiveGateway_2">
77 <bpmn2:incoming>SequenceFlow_9</bpmn2:incoming>
78 <bpmn2:incoming>SequenceFlow_12</bpmn2:incoming>
79 <bpmn2:outgoing>SequenceFlow_10</bpmn2:outgoing>
80 </bpmn2:exclusiveGateway>
81 <bpmn2:sequenceFlow id="SequenceFlow_10" name="" sourceRef="ExclusiveGateway_2" targetRef="EndEvent_2" />
82 <bpmn2:intermediateCatchEvent id="IntermediateCatchEvent_1" name="Skip Delete">
83 <bpmn2:outgoing>SequenceFlow_12</bpmn2:outgoing>
84 <bpmn2:linkEventDefinition id="LinkEventDefinition_2" name="Skip Delete" />
85 </bpmn2:intermediateCatchEvent>
86 <bpmn2:sequenceFlow id="SequenceFlow_12" name="" sourceRef="IntermediateCatchEvent_1" targetRef="ExclusiveGateway_2" />
87 <bpmn2:endEvent id="EndEvent_2">
88 <bpmn2:incoming>SequenceFlow_10</bpmn2:incoming>
89 <bpmn2:terminateEventDefinition id="_TerminateEventDefinition_36" />
90 </bpmn2:endEvent>
91 <bpmn2:scriptTask id="deleteVnf" name="&#10;AAI&#10;Delete&#10;(generic vnf)&#10;" scriptFormat="groovy">
92 <bpmn2:incoming>notInUse</bpmn2:incoming>
93 <bpmn2:outgoing>SequenceFlow_9</bpmn2:outgoing>
94 <bpmn2:script><![CDATA[import org.onap.so.bpmn.infrastructure.scripts.*
95DoDeleteVnf delete = new DoDeleteVnf()
96delete.deleteVnf(execution)]]></bpmn2:script>
97 </bpmn2:scriptTask>
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -040098 <bpmn2:sequenceFlow id="SequenceFlow_0hbmag5" sourceRef="processResponse" targetRef="vnfFoundCheck" />
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040099 </bpmn2:process>
100 <bpmn2:error id="Error_1" name="MSO Workflow Exception" errorCode="MSOWorkflowException" />
101 <bpmn2:error id="Error_2" name="Java Lang Exception" errorCode="java.lang.Exception" />
102 <bpmndi:BPMNDiagram id="BPMNDiagram_1">
103 <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="DoDeleteVnf">
104 <bpmndi:BPMNShape id="_BPMNShape_StartEvent_79" bpmnElement="StartEvent_1">
105 <dc:Bounds x="215" y="209" width="36" height="36" />
106 <bpmndi:BPMNLabel>
107 <dc:Bounds x="233" y="250" width="0" height="0" />
108 </bpmndi:BPMNLabel>
109 </bpmndi:BPMNShape>
110 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_311" bpmnElement="intialization">
111 <dc:Bounds x="322" y="188" width="100" height="80" />
112 </bpmndi:BPMNShape>
113 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_1" bpmnElement="SequenceFlow_1" sourceElement="_BPMNShape_StartEvent_79" targetElement="_BPMNShape_ScriptTask_311">
114 <di:waypoint xsi:type="dc:Point" x="251" y="227" />
115 <di:waypoint xsi:type="dc:Point" x="322" y="228" />
116 <bpmndi:BPMNLabel>
117 <dc:Bounds x="287" y="212.5" width="0" height="0" />
118 </bpmndi:BPMNLabel>
119 </bpmndi:BPMNEdge>
120 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_2" bpmnElement="SequenceFlow_2" sourceElement="_BPMNShape_ScriptTask_311">
121 <di:waypoint xsi:type="dc:Point" x="422" y="228" />
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -0400122 <di:waypoint xsi:type="dc:Point" x="485" y="227" />
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400123 <bpmndi:BPMNLabel>
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -0400124 <dc:Bounds x="408.5" y="212.5" width="90" height="0" />
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400125 </bpmndi:BPMNLabel>
126 </bpmndi:BPMNEdge>
127 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_314" bpmnElement="processResponse">
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -0400128 <dc:Bounds x="485" y="187" width="100" height="80" />
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400129 </bpmndi:BPMNShape>
130 <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_236" bpmnElement="vnfInUseCheck" isMarkerVisible="true">
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -0400131 <dc:Bounds x="789" y="306" width="50" height="50" />
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400132 <bpmndi:BPMNLabel>
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -0400133 <dc:Bounds x="847" y="336" width="58" height="12" />
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400134 </bpmndi:BPMNLabel>
135 </bpmndi:BPMNShape>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400136 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_315" bpmnElement="createWorkflowExceptionInUse">
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -0400137 <dc:Bounds x="861" y="196" width="100" height="80" />
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400138 </bpmndi:BPMNShape>
139 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_6" bpmnElement="inUse" sourceElement="_BPMNShape_ExclusiveGateway_236" targetElement="_BPMNShape_ScriptTask_315">
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -0400140 <di:waypoint xsi:type="dc:Point" x="814" y="306" />
141 <di:waypoint xsi:type="dc:Point" x="814" y="236" />
142 <di:waypoint xsi:type="dc:Point" x="861" y="236" />
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400143 <bpmndi:BPMNLabel>
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -0400144 <dc:Bounds x="821" y="258.40579710144925" width="19" height="12" />
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400145 </bpmndi:BPMNLabel>
146 </bpmndi:BPMNEdge>
147 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_7" bpmnElement="notInUse" sourceElement="_BPMNShape_ExclusiveGateway_236" targetElement="ScriptTask_1ps8v06_di">
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -0400148 <di:waypoint xsi:type="dc:Point" x="814" y="356" />
149 <di:waypoint xsi:type="dc:Point" x="814" y="424" />
150 <di:waypoint xsi:type="dc:Point" x="861" y="424" />
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400151 <bpmndi:BPMNLabel>
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -0400152 <dc:Bounds x="823" y="384.4927536231884" width="14" height="12" />
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400153 </bpmndi:BPMNLabel>
154 </bpmndi:BPMNEdge>
155 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_236" bpmnElement="EndEvent_1">
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -0400156 <dc:Bounds x="1049" y="218" width="36" height="36" />
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400157 <bpmndi:BPMNLabel>
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -0400158 <dc:Bounds x="1022" y="259" width="90" height="0" />
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400159 </bpmndi:BPMNLabel>
160 </bpmndi:BPMNShape>
161 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_8" bpmnElement="SequenceFlow_8" sourceElement="_BPMNShape_ScriptTask_315" targetElement="_BPMNShape_EndEvent_236">
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -0400162 <di:waypoint xsi:type="dc:Point" x="961" y="236" />
163 <di:waypoint xsi:type="dc:Point" x="1049" y="236" />
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400164 <bpmndi:BPMNLabel>
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -0400165 <dc:Bounds x="969" y="236" width="90" height="6" />
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400166 </bpmndi:BPMNLabel>
167 </bpmndi:BPMNEdge>
168 <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_237" bpmnElement="vnfFoundCheck" isMarkerVisible="true">
169 <dc:Bounds x="634" y="202" width="50" height="50" />
170 <bpmndi:BPMNLabel>
171 <dc:Bounds x="672" y="240" width="72" height="22" />
172 </bpmndi:BPMNLabel>
173 </bpmndi:BPMNShape>
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -0400174 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_9" bpmnElement="vnfFound" sourceElement="_BPMNShape_ExclusiveGateway_237" targetElement="_BPMNShape_ExclusiveGateway_236">
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400175 <di:waypoint xsi:type="dc:Point" x="659" y="252" />
176 <di:waypoint xsi:type="dc:Point" x="659" y="331" />
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -0400177 <di:waypoint xsi:type="dc:Point" x="789" y="331" />
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400178 <bpmndi:BPMNLabel>
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -0400179 <dc:Bounds x="664" y="288" width="19" height="12" />
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400180 </bpmndi:BPMNLabel>
181 </bpmndi:BPMNEdge>
182 <bpmndi:BPMNShape id="_BPMNShape_IntermediateThrowEvent_2" bpmnElement="IntermediateThrowEvent_1">
183 <dc:Bounds x="740" y="102" width="36" height="36" />
184 <bpmndi:BPMNLabel>
185 <dc:Bounds x="722" y="143" width="73" height="22" />
186 </bpmndi:BPMNLabel>
187 </bpmndi:BPMNShape>
188 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_10" bpmnElement="notFound" sourceElement="_BPMNShape_ExclusiveGateway_237" targetElement="_BPMNShape_IntermediateThrowEvent_2">
189 <di:waypoint xsi:type="dc:Point" x="659" y="202" />
190 <di:waypoint xsi:type="dc:Point" x="659" y="120" />
191 <di:waypoint xsi:type="dc:Point" x="740" y="120" />
192 <bpmndi:BPMNLabel>
193 <dc:Bounds x="662" y="144" width="22" height="22" />
194 </bpmndi:BPMNLabel>
195 </bpmndi:BPMNEdge>
196 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_237" bpmnElement="EndEvent_2">
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -0400197 <dc:Bounds x="1151" y="405" width="36" height="36" />
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400198 <bpmndi:BPMNLabel>
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -0400199 <dc:Bounds x="1124" y="446" width="90" height="0" />
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400200 </bpmndi:BPMNLabel>
201 </bpmndi:BPMNShape>
202 <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_238" bpmnElement="ExclusiveGateway_2" isMarkerVisible="true">
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -0400203 <dc:Bounds x="1011" y="399" width="50" height="50" />
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400204 <bpmndi:BPMNLabel>
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -0400205 <dc:Bounds x="991" y="454" width="90" height="0" />
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400206 </bpmndi:BPMNLabel>
207 </bpmndi:BPMNShape>
208 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_11" bpmnElement="SequenceFlow_9" sourceElement="ScriptTask_1ps8v06_di" targetElement="_BPMNShape_ExclusiveGateway_238">
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -0400209 <di:waypoint xsi:type="dc:Point" x="961" y="425" />
210 <di:waypoint xsi:type="dc:Point" x="1011" y="424" />
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400211 <bpmndi:BPMNLabel>
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -0400212 <dc:Bounds x="941" y="406.5" width="90" height="6" />
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400213 </bpmndi:BPMNLabel>
214 </bpmndi:BPMNEdge>
215 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_12" bpmnElement="SequenceFlow_10" sourceElement="_BPMNShape_ExclusiveGateway_238">
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -0400216 <di:waypoint xsi:type="dc:Point" x="1060" y="423" />
217 <di:waypoint xsi:type="dc:Point" x="1151" y="423" />
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400218 <bpmndi:BPMNLabel>
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -0400219 <dc:Bounds x="1060.5" y="408" width="90" height="0" />
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400220 </bpmndi:BPMNLabel>
221 </bpmndi:BPMNEdge>
222 <bpmndi:BPMNShape id="_BPMNShape_IntermediateCatchEvent_2" bpmnElement="IntermediateCatchEvent_1">
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -0400223 <dc:Bounds x="1018" y="492" width="36" height="36" />
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400224 <bpmndi:BPMNLabel>
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -0400225 <dc:Bounds x="1009" y="533" width="55" height="12" />
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400226 </bpmndi:BPMNLabel>
227 </bpmndi:BPMNShape>
228 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_14" bpmnElement="SequenceFlow_12" sourceElement="_BPMNShape_IntermediateCatchEvent_2" targetElement="_BPMNShape_ExclusiveGateway_238">
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -0400229 <di:waypoint xsi:type="dc:Point" x="1036" y="492" />
230 <di:waypoint xsi:type="dc:Point" x="1036" y="449" />
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400231 <bpmndi:BPMNLabel>
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -0400232 <dc:Bounds x="1006" y="467.5" width="90" height="6" />
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400233 </bpmndi:BPMNLabel>
234 </bpmndi:BPMNEdge>
235 <bpmndi:BPMNShape id="_BPMNShape_SubProcess_35" bpmnElement="javaErrorHandlingSubProcess" isExpanded="true">
236 <dc:Bounds x="379" y="614" width="312" height="157" />
237 </bpmndi:BPMNShape>
238 <bpmndi:BPMNShape id="_BPMNShape_StartEvent_81" bpmnElement="StartEvent_3">
239 <dc:Bounds x="408" y="675" width="36" height="36" />
240 <bpmndi:BPMNLabel>
241 <dc:Bounds x="426" y="716" width="0" height="0" />
242 </bpmndi:BPMNLabel>
243 </bpmndi:BPMNShape>
244 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_239" bpmnElement="EndEvent_4">
245 <dc:Bounds x="624" y="675" width="36" height="36" />
246 <bpmndi:BPMNLabel>
247 <dc:Bounds x="642" y="716" width="0" height="0" />
248 </bpmndi:BPMNLabel>
249 </bpmndi:BPMNShape>
250 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_319" bpmnElement="processJavaException">
251 <dc:Bounds x="486" y="653" width="100" height="80" />
252 </bpmndi:BPMNShape>
253 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_20" bpmnElement="SequenceFlow_18" sourceElement="_BPMNShape_StartEvent_81" targetElement="_BPMNShape_ScriptTask_319">
254 <di:waypoint xsi:type="dc:Point" x="444" y="693" />
255 <di:waypoint xsi:type="dc:Point" x="486" y="693" />
256 <bpmndi:BPMNLabel>
257 <dc:Bounds x="465" y="693" width="0" height="0" />
258 </bpmndi:BPMNLabel>
259 </bpmndi:BPMNEdge>
260 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_21" bpmnElement="SequenceFlow_19" sourceElement="_BPMNShape_ScriptTask_319" targetElement="_BPMNShape_EndEvent_239">
261 <di:waypoint xsi:type="dc:Point" x="586" y="693" />
262 <di:waypoint xsi:type="dc:Point" x="624" y="693" />
263 <bpmndi:BPMNLabel>
264 <dc:Bounds x="605" y="693" width="0" height="0" />
265 </bpmndi:BPMNLabel>
266 </bpmndi:BPMNEdge>
267 <bpmndi:BPMNShape id="ScriptTask_1ps8v06_di" bpmnElement="deleteVnf">
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -0400268 <dc:Bounds x="861" y="384" width="100" height="80" />
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400269 </bpmndi:BPMNShape>
Benjamin, Max (mb388a)6ba0a222018-10-11 13:55:37 -0400270 <bpmndi:BPMNEdge id="SequenceFlow_0hbmag5_di" bpmnElement="SequenceFlow_0hbmag5">
271 <di:waypoint xsi:type="dc:Point" x="585" y="227" />
272 <di:waypoint xsi:type="dc:Point" x="607" y="227" />
273 <di:waypoint xsi:type="dc:Point" x="634" y="227" />
274 <bpmndi:BPMNLabel>
275 <dc:Bounds x="596" y="206" width="0" height="12" />
276 </bpmndi:BPMNLabel>
277 </bpmndi:BPMNEdge>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400278 </bpmndi:BPMNPlane>
279 </bpmndi:BPMNDiagram>
280</bpmn2:definitions>