Initial OpenECOMP MSO commit
[so.git] / bpmn / MSOGammaBPMN / src / main / resources / process / Infrastructure / DeleteVnfInfra.bpmn
1 <?xml version="1.0" encoding="UTF-8"?>\r
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://activiti.org/bpmn" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL BPMN20.xsd" id="_9MhrcHqVEea26OhQB97uCQ" exporter="camunda modeler" exporterVersion="2.7.0" targetNamespace="http://activiti.org/bpmn">\r
3   <bpmn2:process id="DeleteVnfInfra" name="DeleteVnfInfra" isExecutable="true">\r
4     <bpmn2:startEvent id="StartEvent_1">\r
5       <bpmn2:outgoing>SequenceFlow_1</bpmn2:outgoing>\r
6     </bpmn2:startEvent>\r
7     <bpmn2:sequenceFlow id="SequenceFlow_1" name="" sourceRef="StartEvent_1" targetRef="intialization"/>\r
8     <bpmn2:scriptTask id="sendSyncResponse" name="Send Sync Response" scriptFormat="groovy">\r
9       <bpmn2:incoming>SequenceFlow_2</bpmn2:incoming>\r
10       <bpmn2:outgoing>SequenceFlow_3</bpmn2:outgoing>\r
11       <bpmn2:script><![CDATA[import com.att.bpm.scripts.*
12 DeleteVnfInfra deleteVnf = new DeleteVnfInfra()
13 deleteVnf.sendSyncResponse(execution)]]></bpmn2:script>\r
14     </bpmn2:scriptTask>\r
15     <bpmn2:scriptTask id="intialization" name="Intialization" scriptFormat="groovy">\r
16       <bpmn2:incoming>SequenceFlow_1</bpmn2:incoming>\r
17       <bpmn2:outgoing>SequenceFlow_2</bpmn2:outgoing>\r
18       <bpmn2:script><![CDATA[import com.att.bpm.scripts.*
19 DeleteVnfInfra deleteVnf = new DeleteVnfInfra()
20 deleteVnf.preProcessRequest(execution)]]></bpmn2:script>\r
21     </bpmn2:scriptTask>\r
22     <bpmn2:sequenceFlow id="SequenceFlow_2" name="" sourceRef="intialization" targetRef="sendSyncResponse"/>\r
23     <bpmn2:sequenceFlow id="SequenceFlow_3" name="" sourceRef="sendSyncResponse" targetRef="callGetVnf"/>\r
24     <bpmn2:callActivity id="callGetVnf" name="Get&#xD;&#xA;Generic Vnf" calledElement="GenericGetVnf">\r
25       <bpmn2:extensionElements>\r
26         <camunda:out source="GENGV_vnf" target="DELVI_genericVnf"/>\r
27         <camunda:out source="WorkflowException" target="WorkflowException"/>\r
28         <camunda:out source="GENGV_SuccessIndicator" target="GENGV_SuccessIndicator"/>\r
29         <camunda:out source="GENGV_FoundIndicator" target="GENGV_FoundIndicator"/>\r
30         <camunda:in source="DELVI_type" target="GENGV_type"/>\r
31         <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled"/>\r
32         <camunda:in source="DELVI_vnfId" target="GENGV_vnfId"/>\r
33       </bpmn2:extensionElements>\r
34       <bpmn2:incoming>SequenceFlow_3</bpmn2:incoming>\r
35       <bpmn2:outgoing>SequenceFlow_5</bpmn2:outgoing>\r
36     </bpmn2:callActivity>\r
37     <bpmn2:sequenceFlow id="SequenceFlow_5" name="" sourceRef="callGetVnf" targetRef="vnfFoundCheck"/>\r
38     <bpmn2:exclusiveGateway id="vnfFoundCheck" name="Vnf Found?" default="notFound">\r
39       <bpmn2:incoming>SequenceFlow_5</bpmn2:incoming>\r
40       <bpmn2:outgoing>vnfFound</bpmn2:outgoing>\r
41       <bpmn2:outgoing>notFound</bpmn2:outgoing>\r
42     </bpmn2:exclusiveGateway>\r
43     <bpmn2:sequenceFlow id="vnfFound" name="Yes" sourceRef="vnfFoundCheck" targetRef="processResponse">\r
44       <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("GENGV_FoundIndicator") == true && execution.getVariable("GENGV_SuccessIndicator") == true}]]></bpmn2:conditionExpression>\r
45     </bpmn2:sequenceFlow>\r
46     <bpmn2:sequenceFlow id="notFound" name="No" sourceRef="vnfFoundCheck" targetRef="IntermediateThrowEvent_1"/>\r
47     <bpmn2:scriptTask id="processResponse" name="Process Response" scriptFormat="groovy">\r
48       <bpmn2:incoming>vnfFound</bpmn2:incoming>\r
49       <bpmn2:outgoing>SequenceFlow_4</bpmn2:outgoing>\r
50       <bpmn2:script><![CDATA[import com.att.bpm.scripts.*
51 DeleteVnfInfra deleteVnf = new DeleteVnfInfra()
52 deleteVnf.processGetVnfResponse(execution)]]></bpmn2:script>\r
53     </bpmn2:scriptTask>\r
54     <bpmn2:sequenceFlow id="SequenceFlow_4" name="" sourceRef="processResponse" targetRef="vnfInUseCheck"/>\r
55     <bpmn2:intermediateThrowEvent id="IntermediateThrowEvent_1" name="Skip Delete">\r
56       <bpmn2:incoming>notFound</bpmn2:incoming>\r
57       <bpmn2:linkEventDefinition id="LinkEventDefinition_1" name="Skip Delete"/>\r
58     </bpmn2:intermediateThrowEvent>\r
59     <bpmn2:exclusiveGateway id="vnfInUseCheck" name="Vnf In Use?" default="notInUse">\r
60       <bpmn2:incoming>SequenceFlow_4</bpmn2:incoming>\r
61       <bpmn2:outgoing>inUse</bpmn2:outgoing>\r
62       <bpmn2:outgoing>notInUse</bpmn2:outgoing>\r
63     </bpmn2:exclusiveGateway>\r
64     <bpmn2:sequenceFlow id="inUse" name="Yes" sourceRef="vnfInUseCheck" targetRef="createWorkflowExceptionInUse">\r
65       <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("DELVI_vnfInUse") == true}]]></bpmn2:conditionExpression>\r
66     </bpmn2:sequenceFlow>\r
67     <bpmn2:sequenceFlow id="notInUse" name="No" sourceRef="vnfInUseCheck" targetRef="callDeleteVnf"/>\r
68     <bpmn2:scriptTask id="createWorkflowExceptionInUse" name="Create Workflow Exception" scriptFormat="groovy">\r
69       <bpmn2:incoming>inUse</bpmn2:incoming>\r
70       <bpmn2:outgoing>SequenceFlow_8</bpmn2:outgoing>\r
71       <bpmn2:script><![CDATA[import com.att.bpm.scripts.*
72 ExceptionUtil exceptionUtil = new ExceptionUtil()
73 exceptionUtil.buildAndThrowWorkflowException(execution, 5000, "Can't Delete Generic Vnf. Generic Vnf is still in use.")]]></bpmn2:script>\r
74     </bpmn2:scriptTask>\r
75     <bpmn2:sequenceFlow id="SequenceFlow_8" name="" sourceRef="createWorkflowExceptionInUse" targetRef="EndEvent_1"/>\r
76     <bpmn2:callActivity id="callDeleteVnf" name="Delete&#xD;&#xA;Generic Vnf" calledElement="GenericDeleteVnf">\r
77       <bpmn2:extensionElements>\r
78         <camunda:in source="DELVI_vnfId" target="GENDV_vnfId"/>\r
79         <camunda:in source="DELVI_type" target="GENDV_type"/>\r
80         <camunda:out source="GENDV_SuccessIndicator" target="GENDV_SuccessIndicator"/>\r
81         <camunda:out source="WorkflowException" target="WorkflowException"/>\r
82         <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled"/>\r
83         <camunda:in source="DELVI_resourceVersion" target="GENDV_resourceVersion"/>\r
84       </bpmn2:extensionElements>\r
85       <bpmn2:incoming>notInUse</bpmn2:incoming>\r
86       <bpmn2:outgoing>SequenceFlow_9</bpmn2:outgoing>\r
87     </bpmn2:callActivity>\r
88     <bpmn2:endEvent id="EndEvent_1">\r
89       <bpmn2:incoming>SequenceFlow_8</bpmn2:incoming>\r
90       <bpmn2:errorEventDefinition id="_ErrorEventDefinition_93" errorRef="Error_1"/>\r
91     </bpmn2:endEvent>\r
92     <bpmn2:sequenceFlow id="SequenceFlow_9" name="" sourceRef="callDeleteVnf" targetRef="ExclusiveGateway_2"/>\r
93     <bpmn2:subProcess id="bpmnErrorHandlingSubProcess" name="Error Handling Sub Process" triggeredByEvent="true">\r
94       <bpmn2:scriptTask id="prepareFalloutHandlerRequest" name="Prepare Fallout Request" scriptFormat="groovy">\r
95         <bpmn2:incoming>SequenceFlow_15</bpmn2:incoming>\r
96         <bpmn2:outgoing>SequenceFlow_16</bpmn2:outgoing>\r
97         <bpmn2:script><![CDATA[import com.att.bpm.scripts.*\r
98 \r
99 String requestInfo = execution.getVariable("DELVI_requestInfo")\r
100 ExceptionUtil ex = new ExceptionUtil()\r
101 String falloutHandlerRequest = ex.processMainflowsBPMNException(execution, requestInfo)\r
102 \r
103 execution.setVariable("DELVI_falloutHandlerRequest", falloutHandlerRequest )]]></bpmn2:script>\r
104       </bpmn2:scriptTask>\r
105       <bpmn2:sequenceFlow id="SequenceFlow_16" name="" sourceRef="prepareFalloutHandlerRequest" targetRef="callFalloutHandler"/>\r
106       <bpmn2:callActivity id="callFalloutHandler" name="Fallout&#xD;&#xA;Handler" calledElement="FalloutHandler">\r
107         <bpmn2:extensionElements>\r
108           <camunda:in source="DELVI_falloutHandlerRequest" target="FalloutHandlerRequest"/>\r
109           <camunda:in source="DELVI_requestId" target="requestId"/>\r
110           <camunda:in source="DELVI_serviceInstanceId" target="serviceInstanceId"/>\r
111         </bpmn2:extensionElements>\r
112         <bpmn2:incoming>SequenceFlow_16</bpmn2:incoming>\r
113         <bpmn2:outgoing>SequenceFlow_17</bpmn2:outgoing>\r
114       </bpmn2:callActivity>\r
115       <bpmn2:sequenceFlow id="SequenceFlow_17" name="" sourceRef="callFalloutHandler" targetRef="EndEvent_3"/>\r
116       <bpmn2:endEvent id="EndEvent_3">\r
117         <bpmn2:incoming>SequenceFlow_17</bpmn2:incoming>\r
118         <bpmn2:terminateEventDefinition id="_TerminateEventDefinition_37"/>\r
119       </bpmn2:endEvent>\r
120       <bpmn2:startEvent id="StartEvent_2">\r
121         <bpmn2:outgoing>SequenceFlow_14</bpmn2:outgoing>\r
122         <bpmn2:errorEventDefinition id="_ErrorEventDefinition_94"/>\r
123       </bpmn2:startEvent>\r
124       <bpmn2:sequenceFlow id="SequenceFlow_14" name="" sourceRef="StartEvent_2" targetRef="sendErrorResponse"/>\r
125       <bpmn2:scriptTask id="sendErrorResponse" name="Send Error Response" scriptFormat="groovy">\r
126         <bpmn2:incoming>SequenceFlow_14</bpmn2:incoming>\r
127         <bpmn2:outgoing>SequenceFlow_15</bpmn2:outgoing>\r
128         <bpmn2:script><![CDATA[import com.att.bpm.scripts.*
129 DeleteVnfInfra deleteVnf = new DeleteVnfInfra()
130 deleteVnf.sendErrorResponse(execution)]]></bpmn2:script>\r
131       </bpmn2:scriptTask>\r
132       <bpmn2:sequenceFlow id="SequenceFlow_15" name="" sourceRef="sendErrorResponse" targetRef="prepareFalloutHandlerRequest"/>\r
133     </bpmn2:subProcess>\r
134     <bpmn2:subProcess id="javaErrorHandlingSubProcess" name="Java Exception Handling Sub Process" triggeredByEvent="true">\r
135       <bpmn2:endEvent id="EndEvent_4">\r
136         <bpmn2:incoming>SequenceFlow_19</bpmn2:incoming>\r
137       </bpmn2:endEvent>\r
138       <bpmn2:startEvent id="StartEvent_3">\r
139         <bpmn2:outgoing>SequenceFlow_18</bpmn2:outgoing>\r
140         <bpmn2:errorEventDefinition id="_ErrorEventDefinition_95" errorRef="Error_2"/>\r
141       </bpmn2:startEvent>\r
142       <bpmn2:sequenceFlow id="SequenceFlow_18" name="" sourceRef="StartEvent_3" targetRef="processJavaException"/>\r
143       <bpmn2:scriptTask id="processJavaException" name="Process Error" scriptFormat="groovy">\r
144         <bpmn2:incoming>SequenceFlow_18</bpmn2:incoming>\r
145         <bpmn2:outgoing>SequenceFlow_19</bpmn2:outgoing>\r
146         <bpmn2:script><![CDATA[import com.att.bpm.scripts.*
147 ExceptionUtil exceptionUtil = new ExceptionUtil()
148 exceptionUtil.processJavaException(execution)]]></bpmn2:script>\r
149       </bpmn2:scriptTask>\r
150       <bpmn2:sequenceFlow id="SequenceFlow_19" name="" sourceRef="processJavaException" targetRef="EndEvent_4"/>\r
151     </bpmn2:subProcess>\r
152     <bpmn2:exclusiveGateway id="ExclusiveGateway_2">\r
153       <bpmn2:incoming>SequenceFlow_9</bpmn2:incoming>\r
154       <bpmn2:incoming>SequenceFlow_12</bpmn2:incoming>\r
155       <bpmn2:outgoing>SequenceFlow_10</bpmn2:outgoing>\r
156     </bpmn2:exclusiveGateway>\r
157     <bpmn2:sequenceFlow id="SequenceFlow_10" name="" sourceRef="ExclusiveGateway_2" targetRef="postProcess"/>\r
158     <bpmn2:intermediateCatchEvent id="IntermediateCatchEvent_1" name="Skip Delete">\r
159       <bpmn2:outgoing>SequenceFlow_12</bpmn2:outgoing>\r
160       <bpmn2:linkEventDefinition id="LinkEventDefinition_2" name="Skip Delete"/>\r
161     </bpmn2:intermediateCatchEvent>\r
162     <bpmn2:sequenceFlow id="SequenceFlow_12" name="" sourceRef="IntermediateCatchEvent_1" targetRef="ExclusiveGateway_2"/>\r
163     <bpmn2:scriptTask id="postProcess" name="Prepare Completion Request" scriptFormat="groovy">\r
164       <bpmn2:incoming>SequenceFlow_10</bpmn2:incoming>\r
165       <bpmn2:outgoing>SequenceFlow_6</bpmn2:outgoing>\r
166       <bpmn2:script><![CDATA[import com.att.bpm.scripts.*
167 DeleteVnfInfra deleteVnf = new DeleteVnfInfra()
168 deleteVnf.prepareCompletionHandlerRequest(execution)]]></bpmn2:script>\r
169     </bpmn2:scriptTask>\r
170     <bpmn2:sequenceFlow id="SequenceFlow_6" name="" sourceRef="postProcess" targetRef="callCompletionHandler"/>\r
171     <bpmn2:callActivity id="callCompletionHandler" name="Completion&#xD;&#xA;Handler" calledElement="CompleteMsoProcess">\r
172       <bpmn2:extensionElements>\r
173         <camunda:in source="DELVI_completionHandlerRequest" target="CompleteMsoProcessRequest"/>\r
174         <camunda:in source="DELVI_requestId" target="att-mso-request-id"/>\r
175         <camunda:in source="DELVI_serviceInstanceId" target="att-mso-service-instance-id"/>\r
176         <camunda:out source="CompleteMsoProcessResponse" target="CompleteMsoProcessResponse"/>\r
177       </bpmn2:extensionElements>\r
178       <bpmn2:incoming>SequenceFlow_6</bpmn2:incoming>\r
179       <bpmn2:outgoing>SequenceFlow_7</bpmn2:outgoing>\r
180     </bpmn2:callActivity>\r
181     <bpmn2:sequenceFlow id="SequenceFlow_7" name="" sourceRef="callCompletionHandler" targetRef="EndEvent_2"/>\r
182     <bpmn2:endEvent id="EndEvent_2">\r
183       <bpmn2:incoming>SequenceFlow_7</bpmn2:incoming>\r
184       <bpmn2:terminateEventDefinition id="_TerminateEventDefinition_36"/>\r
185     </bpmn2:endEvent>\r
186   </bpmn2:process>\r
187   <bpmn2:error id="Error_1" errorCode="MSOWorkflowException" name="MSO Workflow Exception"/>\r
188   <bpmn2:error id="Error_2" errorCode="java.lang.Exception" name="Java Lang Exception"/>\r
189   <bpmndi:BPMNDiagram id="BPMNDiagram_1">\r
190     <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="DeleteVnfInfra">\r
191       <bpmndi:BPMNShape id="_BPMNShape_StartEvent_79" bpmnElement="StartEvent_1">\r
192         <dc:Bounds height="36.0" width="36.0" x="90.0" y="210.0"/>\r
193         <bpmndi:BPMNLabel>\r
194           <dc:Bounds height="0.0" width="0.0" x="108.0" y="251.0"/>\r
195         </bpmndi:BPMNLabel>\r
196       </bpmndi:BPMNShape>\r
197       <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_311" bpmnElement="intialization">\r
198         <dc:Bounds height="80.0" width="100.0" x="216.0" y="188.0"/>\r
199       </bpmndi:BPMNShape>\r
200       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_1" bpmnElement="SequenceFlow_1" sourceElement="_BPMNShape_StartEvent_79" targetElement="_BPMNShape_ScriptTask_311">\r
201         <di:waypoint xsi:type="dc:Point" x="126.0" y="228.0"/>\r
202         <di:waypoint xsi:type="dc:Point" x="216.0" y="228.0"/>\r
203         <bpmndi:BPMNLabel>\r
204           <dc:Bounds height="6.0" width="6.0" x="164.0" y="228.0"/>\r
205         </bpmndi:BPMNLabel>\r
206       </bpmndi:BPMNEdge>\r
207       <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_313" bpmnElement="sendSyncResponse">\r
208         <dc:Bounds height="80.0" width="100.0" x="364.0" y="188.0"/>\r
209       </bpmndi:BPMNShape>\r
210       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_2" bpmnElement="SequenceFlow_2" sourceElement="_BPMNShape_ScriptTask_311" targetElement="_BPMNShape_ScriptTask_313">\r
211         <di:waypoint xsi:type="dc:Point" x="316.0" y="228.0"/>\r
212         <di:waypoint xsi:type="dc:Point" x="364.0" y="228.0"/>\r
213         <bpmndi:BPMNLabel>\r
214           <dc:Bounds height="6.0" width="6.0" x="341.0" y="228.0"/>\r
215         </bpmndi:BPMNLabel>\r
216       </bpmndi:BPMNEdge>\r
217       <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_314" bpmnElement="processResponse">\r
218         <dc:Bounds height="80.0" width="100.0" x="704.0" y="291.0"/>\r
219       </bpmndi:BPMNShape>\r
220       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_3" bpmnElement="SequenceFlow_3" sourceElement="_BPMNShape_ScriptTask_313" targetElement="_BPMNShape_CallActivity_63">\r
221         <di:waypoint xsi:type="dc:Point" x="464.0" y="228.0"/>\r
222         <di:waypoint xsi:type="dc:Point" x="504.0" y="228.0"/>\r
223         <bpmndi:BPMNLabel>\r
224           <dc:Bounds height="6.0" width="6.0" x="487.0" y="228.0"/>\r
225         </bpmndi:BPMNLabel>\r
226       </bpmndi:BPMNEdge>\r
227       <bpmndi:BPMNShape id="_BPMNShape_CallActivity_63" bpmnElement="callGetVnf">\r
228         <dc:Bounds height="80.0" width="100.0" x="504.0" y="188.0"/>\r
229       </bpmndi:BPMNShape>\r
230       <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_236" bpmnElement="vnfInUseCheck" isMarkerVisible="true">\r
231         <dc:Bounds height="50.0" width="50.0" x="840.0" y="305.0"/>\r
232         <bpmndi:BPMNLabel>\r
233           <dc:Bounds height="22.0" width="73.0" x="890.0" y="335.0"/>\r
234         </bpmndi:BPMNLabel>\r
235       </bpmndi:BPMNShape>\r
236       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_4" bpmnElement="SequenceFlow_4" sourceElement="_BPMNShape_ScriptTask_314" targetElement="_BPMNShape_ExclusiveGateway_236">\r
237         <di:waypoint xsi:type="dc:Point" x="804.0" y="331.0"/>\r
238         <di:waypoint xsi:type="dc:Point" x="840.0" y="330.0"/>\r
239         <bpmndi:BPMNLabel>\r
240           <dc:Bounds height="6.0" width="6.0" x="799.0" y="325.0"/>\r
241         </bpmndi:BPMNLabel>\r
242       </bpmndi:BPMNEdge>\r
243       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_5" bpmnElement="SequenceFlow_5" sourceElement="_BPMNShape_CallActivity_63" targetElement="_BPMNShape_ExclusiveGateway_237">\r
244         <di:waypoint xsi:type="dc:Point" x="604.0" y="228.0"/>\r
245         <di:waypoint xsi:type="dc:Point" x="634.0" y="227.0"/>\r
246         <bpmndi:BPMNLabel>\r
247           <dc:Bounds height="6.0" width="6.0" x="630.0" y="227.0"/>\r
248         </bpmndi:BPMNLabel>\r
249       </bpmndi:BPMNEdge>\r
250       <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_315" bpmnElement="createWorkflowExceptionInUse">\r
251         <dc:Bounds height="80.0" width="100.0" x="912.0" y="196.0"/>\r
252       </bpmndi:BPMNShape>\r
253       <bpmndi:BPMNShape id="_BPMNShape_CallActivity_64" bpmnElement="callDeleteVnf">\r
254         <dc:Bounds height="80.0" width="100.0" x="912.0" y="384.0"/>\r
255       </bpmndi:BPMNShape>\r
256       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_6" bpmnElement="inUse" sourceElement="_BPMNShape_ExclusiveGateway_236" targetElement="_BPMNShape_ScriptTask_315">\r
257         <di:waypoint xsi:type="dc:Point" x="865.0" y="305.0"/>\r
258         <di:waypoint xsi:type="dc:Point" x="865.0" y="236.0"/>\r
259         <di:waypoint xsi:type="dc:Point" x="912.0" y="236.0"/>\r
260         <bpmndi:BPMNLabel>\r
261           <dc:Bounds height="22.0" width="29.0" x="867.0" y="258.0"/>\r
262         </bpmndi:BPMNLabel>\r
263       </bpmndi:BPMNEdge>\r
264       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_7" bpmnElement="notInUse" sourceElement="_BPMNShape_ExclusiveGateway_236" targetElement="_BPMNShape_CallActivity_64">\r
265         <di:waypoint xsi:type="dc:Point" x="865.0" y="355.0"/>\r
266         <di:waypoint xsi:type="dc:Point" x="865.0" y="424.0"/>\r
267         <di:waypoint xsi:type="dc:Point" x="912.0" y="424.0"/>\r
268         <bpmndi:BPMNLabel>\r
269           <dc:Bounds height="22.0" width="22.0" x="870.0" y="384.0"/>\r
270         </bpmndi:BPMNLabel>\r
271       </bpmndi:BPMNEdge>\r
272       <bpmndi:BPMNShape id="_BPMNShape_EndEvent_236" bpmnElement="EndEvent_1">\r
273         <dc:Bounds height="36.0" width="36.0" x="1100.0" y="218.0"/>\r
274         <bpmndi:BPMNLabel>\r
275           <dc:Bounds height="0.0" width="0.0" x="1118.0" y="259.0"/>\r
276         </bpmndi:BPMNLabel>\r
277       </bpmndi:BPMNShape>\r
278       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_8" bpmnElement="SequenceFlow_8" sourceElement="_BPMNShape_ScriptTask_315" targetElement="_BPMNShape_EndEvent_236">\r
279         <di:waypoint xsi:type="dc:Point" x="1012.0" y="236.0"/>\r
280         <di:waypoint xsi:type="dc:Point" x="1100.0" y="236.0"/>\r
281         <bpmndi:BPMNLabel>\r
282           <dc:Bounds height="6.0" width="6.0" x="1062.0" y="236.0"/>\r
283         </bpmndi:BPMNLabel>\r
284       </bpmndi:BPMNEdge>\r
285       <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_237" bpmnElement="vnfFoundCheck" isMarkerVisible="true">\r
286         <dc:Bounds height="50.0" width="50.0" x="634.0" y="202.0"/>\r
287         <bpmndi:BPMNLabel>\r
288           <dc:Bounds height="22.0" width="72.0" x="672.0" y="240.0"/>\r
289         </bpmndi:BPMNLabel>\r
290       </bpmndi:BPMNShape>\r
291       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_9" bpmnElement="vnfFound" sourceElement="_BPMNShape_ExclusiveGateway_237" targetElement="_BPMNShape_ScriptTask_314">\r
292         <di:waypoint xsi:type="dc:Point" x="659.0" y="252.0"/>\r
293         <di:waypoint xsi:type="dc:Point" x="659.0" y="331.0"/>\r
294         <di:waypoint xsi:type="dc:Point" x="704.0" y="331.0"/>\r
295         <bpmndi:BPMNLabel>\r
296           <dc:Bounds height="22.0" width="29.0" x="659.0" y="288.0"/>\r
297         </bpmndi:BPMNLabel>\r
298       </bpmndi:BPMNEdge>\r
299       <bpmndi:BPMNShape id="_BPMNShape_IntermediateThrowEvent_2" bpmnElement="IntermediateThrowEvent_1">\r
300         <dc:Bounds height="36.0" width="36.0" x="740.0" y="102.0"/>\r
301         <bpmndi:BPMNLabel>\r
302           <dc:Bounds height="22.0" width="73.0" x="722.0" y="143.0"/>\r
303         </bpmndi:BPMNLabel>\r
304       </bpmndi:BPMNShape>\r
305       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_10" bpmnElement="notFound" sourceElement="_BPMNShape_ExclusiveGateway_237" targetElement="_BPMNShape_IntermediateThrowEvent_2">\r
306         <di:waypoint xsi:type="dc:Point" x="659.0" y="202.0"/>\r
307         <di:waypoint xsi:type="dc:Point" x="659.0" y="120.0"/>\r
308         <di:waypoint xsi:type="dc:Point" x="740.0" y="120.0"/>\r
309         <bpmndi:BPMNLabel>\r
310           <dc:Bounds height="22.0" width="22.0" x="662.0" y="144.0"/>\r
311         </bpmndi:BPMNLabel>\r
312       </bpmndi:BPMNEdge>\r
313       <bpmndi:BPMNShape id="_BPMNShape_EndEvent_237" bpmnElement="EndEvent_2">\r
314         <dc:Bounds height="36.0" width="36.0" x="1524.0" y="406.0"/>\r
315         <bpmndi:BPMNLabel>\r
316           <dc:Bounds height="0.0" width="0.0" x="1542.0" y="447.0"/>\r
317         </bpmndi:BPMNLabel>\r
318       </bpmndi:BPMNShape>\r
319       <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_238" bpmnElement="ExclusiveGateway_2" isMarkerVisible="true">\r
320         <dc:Bounds height="50.0" width="50.0" x="1062.0" y="398.0"/>\r
321         <bpmndi:BPMNLabel>\r
322           <dc:Bounds height="0.0" width="0.0" x="1087.0" y="453.0"/>\r
323         </bpmndi:BPMNLabel>\r
324       </bpmndi:BPMNShape>\r
325       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_11" bpmnElement="SequenceFlow_9" sourceElement="_BPMNShape_CallActivity_64" targetElement="_BPMNShape_ExclusiveGateway_238">\r
326         <di:waypoint xsi:type="dc:Point" x="1012.0" y="424.0"/>\r
327         <di:waypoint xsi:type="dc:Point" x="1062.0" y="423.0"/>\r
328         <bpmndi:BPMNLabel>\r
329           <dc:Bounds height="6.0" width="6.0" x="1036.0" y="423.0"/>\r
330         </bpmndi:BPMNLabel>\r
331       </bpmndi:BPMNEdge>\r
332       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_12" bpmnElement="SequenceFlow_10" sourceElement="_BPMNShape_ExclusiveGateway_238" targetElement="_BPMNShape_ScriptTask_326">\r
333         <di:waypoint xsi:type="dc:Point" x="1112.0" y="423.0"/>\r
334         <di:waypoint xsi:type="dc:Point" x="1152.0" y="424.0"/>\r
335         <bpmndi:BPMNLabel>\r
336           <dc:Bounds height="6.0" width="6.0" x="1128.0" y="423.0"/>\r
337         </bpmndi:BPMNLabel>\r
338       </bpmndi:BPMNEdge>\r
339       <bpmndi:BPMNShape id="_BPMNShape_IntermediateCatchEvent_2" bpmnElement="IntermediateCatchEvent_1">\r
340         <dc:Bounds height="36.0" width="36.0" x="1069.0" y="492.0"/>\r
341         <bpmndi:BPMNLabel>\r
342           <dc:Bounds height="22.0" width="73.0" x="1051.0" y="533.0"/>\r
343         </bpmndi:BPMNLabel>\r
344       </bpmndi:BPMNShape>\r
345       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_14" bpmnElement="SequenceFlow_12" sourceElement="_BPMNShape_IntermediateCatchEvent_2" targetElement="_BPMNShape_ExclusiveGateway_238">\r
346         <di:waypoint xsi:type="dc:Point" x="1087.0" y="492.0"/>\r
347         <di:waypoint xsi:type="dc:Point" x="1087.0" y="448.0"/>\r
348         <bpmndi:BPMNLabel>\r
349           <dc:Bounds height="6.0" width="6.0" x="1084.0" y="462.0"/>\r
350         </bpmndi:BPMNLabel>\r
351       </bpmndi:BPMNEdge>\r
352       <bpmndi:BPMNShape id="_BPMNShape_SubProcess_34" bpmnElement="bpmnErrorHandlingSubProcess" isExpanded="true">\r
353         <dc:Bounds height="207.0" width="589.0" x="132.0" y="442.0"/>\r
354       </bpmndi:BPMNShape>\r
355       <bpmndi:BPMNShape id="_BPMNShape_StartEvent_80" bpmnElement="StartEvent_2">\r
356         <dc:Bounds height="36.0" width="36.0" x="144.0" y="528.0"/>\r
357         <bpmndi:BPMNLabel>\r
358           <dc:Bounds height="0.0" width="0.0" x="162.0" y="569.0"/>\r
359         </bpmndi:BPMNLabel>\r
360       </bpmndi:BPMNShape>\r
361       <bpmndi:BPMNShape id="_BPMNShape_EndEvent_238" bpmnElement="EndEvent_3">\r
362         <dc:Bounds height="36.0" width="36.0" x="672.0" y="528.0"/>\r
363         <bpmndi:BPMNLabel>\r
364           <dc:Bounds height="0.0" width="0.0" x="690.0" y="569.0"/>\r
365         </bpmndi:BPMNLabel>\r
366       </bpmndi:BPMNShape>\r
367       <bpmndi:BPMNShape id="_BPMNShape_CallActivity_66" bpmnElement="callFalloutHandler">\r
368         <dc:Bounds height="80.0" width="100.0" x="516.0" y="506.0"/>\r
369       </bpmndi:BPMNShape>\r
370       <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_317" bpmnElement="sendErrorResponse">\r
371         <dc:Bounds height="80.0" width="100.0" x="240.0" y="506.0"/>\r
372       </bpmndi:BPMNShape>\r
373       <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_318" bpmnElement="prepareFalloutHandlerRequest">\r
374         <dc:Bounds height="80.0" width="100.0" x="377.0" y="506.0"/>\r
375       </bpmndi:BPMNShape>\r
376       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_16" bpmnElement="SequenceFlow_14" sourceElement="_BPMNShape_StartEvent_80" targetElement="_BPMNShape_ScriptTask_317">\r
377         <di:waypoint xsi:type="dc:Point" x="180.0" y="546.0"/>\r
378         <di:waypoint xsi:type="dc:Point" x="240.0" y="546.0"/>\r
379         <bpmndi:BPMNLabel>\r
380           <dc:Bounds height="6.0" width="6.0" x="201.0" y="546.0"/>\r
381         </bpmndi:BPMNLabel>\r
382       </bpmndi:BPMNEdge>\r
383       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_17" bpmnElement="SequenceFlow_15" sourceElement="_BPMNShape_ScriptTask_317" targetElement="_BPMNShape_ScriptTask_318">\r
384         <di:waypoint xsi:type="dc:Point" x="340.0" y="546.0"/>\r
385         <di:waypoint xsi:type="dc:Point" x="377.0" y="546.0"/>\r
386         <bpmndi:BPMNLabel>\r
387           <dc:Bounds height="6.0" width="6.0" x="353.0" y="546.0"/>\r
388         </bpmndi:BPMNLabel>\r
389       </bpmndi:BPMNEdge>\r
390       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_18" bpmnElement="SequenceFlow_16" sourceElement="_BPMNShape_ScriptTask_318" targetElement="_BPMNShape_CallActivity_66">\r
391         <di:waypoint xsi:type="dc:Point" x="477.0" y="546.0"/>\r
392         <di:waypoint xsi:type="dc:Point" x="516.0" y="546.0"/>\r
393         <bpmndi:BPMNLabel>\r
394           <dc:Bounds height="6.0" width="6.0" x="491.0" y="546.0"/>\r
395         </bpmndi:BPMNLabel>\r
396       </bpmndi:BPMNEdge>\r
397       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_19" bpmnElement="SequenceFlow_17" sourceElement="_BPMNShape_CallActivity_66" targetElement="_BPMNShape_EndEvent_238">\r
398         <di:waypoint xsi:type="dc:Point" x="616.0" y="546.0"/>\r
399         <di:waypoint xsi:type="dc:Point" x="672.0" y="546.0"/>\r
400         <bpmndi:BPMNLabel>\r
401           <dc:Bounds height="6.0" width="6.0" x="635.0" y="546.0"/>\r
402         </bpmndi:BPMNLabel>\r
403       </bpmndi:BPMNEdge>\r
404       <bpmndi:BPMNShape id="_BPMNShape_SubProcess_35" bpmnElement="javaErrorHandlingSubProcess" isExpanded="true">\r
405         <dc:Bounds height="157.0" width="312.0" x="271.0" y="696.0"/>\r
406       </bpmndi:BPMNShape>\r
407       <bpmndi:BPMNShape id="_BPMNShape_StartEvent_81" bpmnElement="StartEvent_3">\r
408         <dc:Bounds height="36.0" width="36.0" x="300.0" y="757.0"/>\r
409         <bpmndi:BPMNLabel>\r
410           <dc:Bounds height="0.0" width="0.0" x="318.0" y="798.0"/>\r
411         </bpmndi:BPMNLabel>\r
412       </bpmndi:BPMNShape>\r
413       <bpmndi:BPMNShape id="_BPMNShape_EndEvent_239" bpmnElement="EndEvent_4">\r
414         <dc:Bounds height="36.0" width="36.0" x="516.0" y="757.0"/>\r
415         <bpmndi:BPMNLabel>\r
416           <dc:Bounds height="0.0" width="0.0" x="534.0" y="798.0"/>\r
417         </bpmndi:BPMNLabel>\r
418       </bpmndi:BPMNShape>\r
419       <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_319" bpmnElement="processJavaException">\r
420         <dc:Bounds height="80.0" width="100.0" x="378.0" y="735.0"/>\r
421       </bpmndi:BPMNShape>\r
422       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_20" bpmnElement="SequenceFlow_18" sourceElement="_BPMNShape_StartEvent_81" targetElement="_BPMNShape_ScriptTask_319">\r
423         <di:waypoint xsi:type="dc:Point" x="336.0" y="775.0"/>\r
424         <di:waypoint xsi:type="dc:Point" x="378.0" y="775.0"/>\r
425         <bpmndi:BPMNLabel>\r
426           <dc:Bounds height="6.0" width="6.0" x="354.0" y="775.0"/>\r
427         </bpmndi:BPMNLabel>\r
428       </bpmndi:BPMNEdge>\r
429       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_21" bpmnElement="SequenceFlow_19" sourceElement="_BPMNShape_ScriptTask_319" targetElement="_BPMNShape_EndEvent_239">\r
430         <di:waypoint xsi:type="dc:Point" x="478.0" y="775.0"/>\r
431         <di:waypoint xsi:type="dc:Point" x="516.0" y="775.0"/>\r
432         <bpmndi:BPMNLabel>\r
433           <dc:Bounds height="6.0" width="6.0" x="494.0" y="775.0"/>\r
434         </bpmndi:BPMNLabel>\r
435       </bpmndi:BPMNEdge>\r
436       <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_326" bpmnElement="postProcess">\r
437         <dc:Bounds height="80.0" width="100.0" x="1152.0" y="384.0"/>\r
438       </bpmndi:BPMNShape>\r
439       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_22" bpmnElement="SequenceFlow_6" sourceElement="_BPMNShape_ScriptTask_326" targetElement="_BPMNShape_CallActivity_71">\r
440         <di:waypoint xsi:type="dc:Point" x="1252.0" y="424.0"/>\r
441         <di:waypoint xsi:type="dc:Point" x="1296.0" y="424.0"/>\r
442         <bpmndi:BPMNLabel>\r
443           <dc:Bounds height="6.0" width="6.0" x="1271.0" y="424.0"/>\r
444         </bpmndi:BPMNLabel>\r
445       </bpmndi:BPMNEdge>\r
446       <bpmndi:BPMNShape id="_BPMNShape_CallActivity_71" bpmnElement="callCompletionHandler">\r
447         <dc:Bounds height="80.0" width="100.0" x="1296.0" y="384.0"/>\r
448       </bpmndi:BPMNShape>\r
449       <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_13" bpmnElement="SequenceFlow_7" sourceElement="_BPMNShape_CallActivity_71" targetElement="_BPMNShape_EndEvent_237">\r
450         <di:waypoint xsi:type="dc:Point" x="1396.0" y="424.0"/>\r
451         <di:waypoint xsi:type="dc:Point" x="1524.0" y="424.0"/>\r
452         <bpmndi:BPMNLabel>\r
453           <dc:Bounds height="6.0" width="6.0" x="1411.0" y="424.0"/>\r
454         </bpmndi:BPMNLabel>\r
455       </bpmndi:BPMNEdge>\r
456     </bpmndi:BPMNPlane>\r
457   </bpmndi:BPMNDiagram>\r
458 </bpmn2:definitions>