blob: 91fca3d2137aba0903e60036910f38413f8ac5f3 [file] [log] [blame]
xg353yb6b7bef2017-04-11 13:30:42 +02001<?xml version="1.0" encoding="UTF-8"?>
2<bpmn2:definitions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bpmn2="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="_DkzPAHB4EeaJwpcpVN5gXw" targetNamespace="http://camunda.org/schema/1.0/bpmn" exporter="Camunda Modeler" exporterVersion="1.6.0" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL BPMN20.xsd">
3 <bpmn2:process id="DoCreateVnf" name="DoCreateVnf" 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="initialization" />
8 <bpmn2:scriptTask id="initialization" name="Initialization" scriptFormat="groovy">
9 <bpmn2:incoming>SequenceFlow_1</bpmn2:incoming>
10 <bpmn2:outgoing>SequenceFlow_2</bpmn2:outgoing>
11 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
12DoCreateVnf createVnf = new DoCreateVnf()
13createVnf.preProcessRequest(execution)]]></bpmn2:script>
14 </bpmn2:scriptTask>
15 <bpmn2:sequenceFlow id="SequenceFlow_2" name="" sourceRef="initialization" targetRef="callGetService" />
16 <bpmn2:scriptTask id="buildWorkflowException" name="Create Workflow Exception" scriptFormat="groovy">
17 <bpmn2:incoming>notFound</bpmn2:incoming>
18 <bpmn2:outgoing>SequenceFlow_6</bpmn2:outgoing>
19 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.common.scripts.*
20ExceptionUtil exceptionUtil = new ExceptionUtil()
21exceptionUtil.buildWorkflowException(execution, 404, "Service Instance Not Found")]]></bpmn2:script>
22 </bpmn2:scriptTask>
23 <bpmn2:sequenceFlow id="SequenceFlow_6" name="" sourceRef="buildWorkflowException" targetRef="EndEvent_1" />
24 <bpmn2:callActivity id="callGetService" name="Get&#10;&#10;Service&#10;&#10;Instance" calledElement="GenericGetService">
25 <bpmn2:extensionElements>
26 <camunda:in source="DoCVNF_serviceInstanceId" target="GENGS_serviceInstanceId" />
27 <camunda:out source="GENGS_FoundIndicator" target="GENGS_FoundIndicator" />
28 <camunda:out source="GENGS_SuccessIndicator" target="GENGS_SuccessIndicator" />
29 <camunda:out source="GENGS_serviceInstance" target="CRTVI_serviceInstance" />
30 <camunda:out source="WorkflowException" target="WorkflowException" />
31 <camunda:out source="GENGS_siResourceLink" target="GENGS_siResourceLink" />
32 <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" />
33 <camunda:in source="GENGS_type" target="GENGS_type" />
34 </bpmn2:extensionElements>
35 <bpmn2:incoming>SequenceFlow_2</bpmn2:incoming>
36 <bpmn2:outgoing>SequenceFlow_4</bpmn2:outgoing>
37 </bpmn2:callActivity>
38 <bpmn2:sequenceFlow id="SequenceFlow_4" name="" sourceRef="callGetService" targetRef="serviceInstanceFound" />
39 <bpmn2:exclusiveGateway id="serviceInstanceFound" name="Service Instance Found?" default="notFound">
40 <bpmn2:incoming>SequenceFlow_4</bpmn2:incoming>
41 <bpmn2:outgoing>notFound</bpmn2:outgoing>
42 <bpmn2:outgoing>found</bpmn2:outgoing>
43 </bpmn2:exclusiveGateway>
44 <bpmn2:sequenceFlow id="notFound" name="No" sourceRef="serviceInstanceFound" targetRef="buildWorkflowException" />
45 <bpmn2:sequenceFlow id="found" name="Yes" sourceRef="serviceInstanceFound" targetRef="callGetVnf">
46 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("GENGS_FoundIndicator" ) == true && execution.getVariable("GENGS_SuccessIndicator" ) == true}]]></bpmn2:conditionExpression>
47 </bpmn2:sequenceFlow>
48 <bpmn2:exclusiveGateway id="vnfExist" name="Vnf Already Exist?" default="vnfExistYes">
49 <bpmn2:incoming>SequenceFlow_7</bpmn2:incoming>
50 <bpmn2:outgoing>vnfExistYes</bpmn2:outgoing>
51 <bpmn2:outgoing>vnfExistNo</bpmn2:outgoing>
52 </bpmn2:exclusiveGateway>
53 <bpmn2:sequenceFlow id="vnfExistYes" name="Yes" sourceRef="vnfExist" targetRef="vnfExistWorkflowException" />
54 <bpmn2:sequenceFlow id="vnfExistNo" name="No" sourceRef="vnfExist" targetRef="prepareCreateGenericVnf">
55 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("GENGV_FoundIndicator" ) == false && execution.getVariable("GENGV_SuccessIndicator" ) == true}]]></bpmn2:conditionExpression>
56 </bpmn2:sequenceFlow>
57 <bpmn2:callActivity id="callGetVnf" name="Get&#10;&#10;Generic Vnf" calledElement="GenericGetVnf">
58 <bpmn2:extensionElements>
59 <camunda:in source="DoCVNF_vnfName" target="GENGV_vnfName" />
60 <camunda:in source="DoCVNF_type" target="GENGV_type" />
61 <camunda:out source="GENGV_vnf" target="CRTVI_genericVnf" />
62 <camunda:out source="GENGV_FoundIndicator" target="GENGV_FoundIndicator" />
63 <camunda:out source="GENGV_SuccessIndicator" target="GENGV_SuccessIndicator" />
64 <camunda:out source="WorkflowException" target="WorkflowException" />
65 <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" />
66 </bpmn2:extensionElements>
67 <bpmn2:incoming>found</bpmn2:incoming>
68 <bpmn2:outgoing>SequenceFlow_7</bpmn2:outgoing>
69 </bpmn2:callActivity>
70 <bpmn2:sequenceFlow id="SequenceFlow_7" name="" sourceRef="callGetVnf" targetRef="vnfExist" />
71 <bpmn2:scriptTask id="vnfExistWorkflowException" name="Create Workflow Exception" scriptFormat="groovy">
72 <bpmn2:incoming>vnfExistYes</bpmn2:incoming>
73 <bpmn2:outgoing>SequenceFlow_10</bpmn2:outgoing>
74 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.common.scripts.*
75ExceptionUtil exceptionUtil = new ExceptionUtil()
76exceptionUtil.buildWorkflowException(execution, 5000, "Generic Vnf Already Exist.")]]></bpmn2:script>
77 </bpmn2:scriptTask>
78 <bpmn2:sequenceFlow id="SequenceFlow_10" name="" sourceRef="vnfExistWorkflowException" targetRef="EndEvent_2" />
79 <bpmn2:endEvent id="EndEvent_1">
80 <bpmn2:incoming>SequenceFlow_6</bpmn2:incoming>
81 <bpmn2:errorEventDefinition id="ErrorEventDefinition_1" errorRef="Error_2" />
82 </bpmn2:endEvent>
83 <bpmn2:endEvent id="EndEvent_2">
84 <bpmn2:incoming>SequenceFlow_10</bpmn2:incoming>
85 <bpmn2:errorEventDefinition id="ErrorEventDefinition_2" errorRef="Error_2" />
86 </bpmn2:endEvent>
87 <bpmn2:scriptTask id="prepareCreateGenericVnf" name="Prepare&#10;&#10;Create Vnf Payload" scriptFormat="groovy">
88 <bpmn2:incoming>vnfExistNo</bpmn2:incoming>
89 <bpmn2:outgoing>SequenceFlow_11</bpmn2:outgoing>
90 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
91DoCreateVnf createVnf = new DoCreateVnf()
92createVnf.prepareCreateGenericVnf(execution)]]></bpmn2:script>
93 </bpmn2:scriptTask>
94 <bpmn2:sequenceFlow id="SequenceFlow_11" name="" sourceRef="prepareCreateGenericVnf" targetRef="callPutVnf" />
95 <bpmn2:callActivity id="callPutVnf" name="Create (Put)&#10;&#10;Generic Vnf" calledElement="GenericPutVnf">
96 <bpmn2:extensionElements>
97 <camunda:in source="DoCVNF_genericVnfPayload" target="GENPV_vnfPayload" />
98 <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" />
99 <camunda:in source="DoCVNF_vnfId" target="GENPV_vnfId" />
100 <camunda:out source="GENPV_SuccessIndicator" target="GENPV_SuccessIndicator" />
101 <camunda:out source="WorkflowException" target="WorkflowException" />
102 <camunda:in source="DoCVNF_type" target="GENPV_type" />
103 </bpmn2:extensionElements>
104 <bpmn2:incoming>SequenceFlow_11</bpmn2:incoming>
105 <bpmn2:outgoing>SequenceFlow_1acnwwu</bpmn2:outgoing>
106 </bpmn2:callActivity>
107 <bpmn2:subProcess id="javaErrorHandlingSubProcess" name="Java Exception Handling Sub Process" triggeredByEvent="true">
108 <bpmn2:scriptTask id="processJavaError" name="Process Error" scriptFormat="groovy">
109 <bpmn2:incoming>SequenceFlow_8</bpmn2:incoming>
110 <bpmn2:outgoing>SequenceFlow_9</bpmn2:outgoing>
111 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.common.scripts.*
112ExceptionUtil exceptionUtil = new ExceptionUtil()
113exceptionUtil.processJavaException(execution)]]></bpmn2:script>
114 </bpmn2:scriptTask>
115 <bpmn2:sequenceFlow id="SequenceFlow_9" name="" sourceRef="processJavaError" targetRef="EndEvent_4" />
116 <bpmn2:endEvent id="EndEvent_4">
117 <bpmn2:incoming>SequenceFlow_9</bpmn2:incoming>
118 </bpmn2:endEvent>
119 <bpmn2:startEvent id="StartEvent_2">
120 <bpmn2:outgoing>SequenceFlow_8</bpmn2:outgoing>
121 <bpmn2:errorEventDefinition id="ErrorEventDefinition_3" errorRef="Error_1" />
122 </bpmn2:startEvent>
123 <bpmn2:sequenceFlow id="SequenceFlow_8" name="" sourceRef="StartEvent_2" targetRef="processJavaError" />
124 </bpmn2:subProcess>
125 <bpmn2:endEvent id="EndEvent_3">
126 <bpmn2:incoming>SequenceFlow_15z3gpq</bpmn2:incoming>
127 <bpmn2:incoming>SequenceFlow_0ay5l4b</bpmn2:incoming>
128 <bpmn2:terminateEventDefinition id="_TerminateEventDefinition_35" />
129 </bpmn2:endEvent>
130 <bpmn2:sequenceFlow id="SequenceFlow_1q6udwm" sourceRef="preProcessSDNCAssignRequest" targetRef="callSDNCAdapterVNFTopologyAssign" />
131 <bpmn2:sequenceFlow id="SequenceFlow_15knw0q" sourceRef="callSDNCAdapterVNFTopologyAssign" targetRef="postProcessSDNCAssignRequest" />
132 <bpmn2:sequenceFlow id="SequenceFlow_0c5h00o" sourceRef="postProcessSDNCAssignRequest" targetRef="preProcessSDNCActivateRequest" />
133 <bpmn2:sequenceFlow id="SequenceFlow_1lalmvp" sourceRef="preProcessSDNCActivateRequest" targetRef="callSDNCAdapterVNFTopologyActivate" />
134 <bpmn2:sequenceFlow id="SequenceFlow_0eb41vb" sourceRef="callSDNCAdapterVNFTopologyActivate" targetRef="postProcessSDNCActivateRequest" />
135 <bpmn2:sequenceFlow id="SequenceFlow_15z3gpq" sourceRef="postProcessSDNCActivateRequest" targetRef="EndEvent_3" />
136 <bpmn2:sequenceFlow id="SequenceFlow_1acnwwu" sourceRef="callPutVnf" targetRef="ExclusiveGateway_045rm8i" />
137 <bpmn2:scriptTask id="preProcessSDNCAssignRequest" name="PreProcess SDNC Assign Request" scriptFormat="groovy">
138 <bpmn2:incoming>SequenceFlow_0ttqcwx</bpmn2:incoming>
139 <bpmn2:outgoing>SequenceFlow_1q6udwm</bpmn2:outgoing>
140 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
141DoCreateVnf createVnf = new DoCreateVnf()
142createVnf.preProcessSDNCAssignRequest(execution)]]></bpmn2:script>
143 </bpmn2:scriptTask>
144 <bpmn2:callActivity id="callSDNCAdapterVNFTopologyAssign" name="Call SDNC Adapter VNF Topology Assign" calledElement="sdncAdapter">
145 <bpmn2:extensionElements>
146 <camunda:in source="DoCVNF_assignSDNCRequest" target="sdncAdapterWorkflowRequest" />
147 <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" />
148 <camunda:in source="mso-request-id" target="mso-request-id" />
149 <camunda:in source="mso-service-instance-id" target="mso-service-instance-id" />
150 <camunda:out source="WorkflowException" target="WorkflowException" />
151 <camunda:out source="sdncAdapterResponse" target="DoCVNF_assignSDNCAdapterResponse" />
152 <camunda:out source="SDNCA_SuccessIndicator" target="SDNCA_SuccessIndicator" />
153 </bpmn2:extensionElements>
154 <bpmn2:incoming>SequenceFlow_1q6udwm</bpmn2:incoming>
155 <bpmn2:outgoing>SequenceFlow_15knw0q</bpmn2:outgoing>
156 </bpmn2:callActivity>
157 <bpmn2:scriptTask id="postProcessSDNCAssignRequest" name="PostProcess SDNC Assign Request" scriptFormat="groovy">
158 <bpmn2:incoming>SequenceFlow_15knw0q</bpmn2:incoming>
159 <bpmn2:outgoing>SequenceFlow_0c5h00o</bpmn2:outgoing>
160 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
161
162String response = execution.getVariable("DoCVNF_assignSDNCAdapterResponse")
163
164def createVnfInfra = new DoCreateVnf()
165createVnfInfra.validateSDNCResponse(execution, response, "assign")]]></bpmn2:script>
166 </bpmn2:scriptTask>
167 <bpmn2:scriptTask id="preProcessSDNCActivateRequest" name="PreProcess SDNC Activate Request" scriptFormat="groovy">
168 <bpmn2:incoming>SequenceFlow_0c5h00o</bpmn2:incoming>
169 <bpmn2:outgoing>SequenceFlow_1lalmvp</bpmn2:outgoing>
170 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
171DoCreateVnf createVnf = new DoCreateVnf()
172createVnf.preProcessSDNCActivateRequest(execution)]]></bpmn2:script>
173 </bpmn2:scriptTask>
174 <bpmn2:callActivity id="callSDNCAdapterVNFTopologyActivate" name="Call SDNC Adapter VNF Topology Activate" calledElement="sdncAdapter">
175 <bpmn2:extensionElements>
176 <camunda:in source="DoCVNF_activateSDNCRequest" target="sdncAdapterWorkflowRequest" />
177 <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" />
178 <camunda:in source="mso-reqeuest-id" target="mso-request-id" />
179 <camunda:in source="mso-service-instance-id" target="mso-service-instance-id" />
180 <camunda:out source="WorkflowException" target="WorkflowException" />
181 <camunda:out source="sdncAdapterResponse" target="DoCVNF_activateSDNCAdapterResponse" />
182 <camunda:out source="SDNCA_SuccessIndicator" target="SDNCA_SuccessIndicator" />
183 </bpmn2:extensionElements>
184 <bpmn2:incoming>SequenceFlow_1lalmvp</bpmn2:incoming>
185 <bpmn2:outgoing>SequenceFlow_0eb41vb</bpmn2:outgoing>
186 </bpmn2:callActivity>
187 <bpmn2:scriptTask id="postProcessSDNCActivateRequest" name="PostProcess SDNC Activate Request" scriptFormat="groovy">
188 <bpmn2:incoming>SequenceFlow_0eb41vb</bpmn2:incoming>
189 <bpmn2:outgoing>SequenceFlow_15z3gpq</bpmn2:outgoing>
190 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
191
192String response = execution.getVariable("DoCVNF_assignSDNCAdapterResponse")
193
194def createVnfInfra = new DoCreateVnf()
195createVnfInfra.validateSDNCResponse(execution, response, "activate")]]></bpmn2:script>
196 </bpmn2:scriptTask>
197 <bpmn2:exclusiveGateway id="ExclusiveGateway_045rm8i" name="Is SDNC Interaction Enabled?" default="SequenceFlow_0ay5l4b">
198 <bpmn2:incoming>SequenceFlow_1acnwwu</bpmn2:incoming>
199 <bpmn2:outgoing>SequenceFlow_0ttqcwx</bpmn2:outgoing>
200 <bpmn2:outgoing>SequenceFlow_0ay5l4b</bpmn2:outgoing>
201 </bpmn2:exclusiveGateway>
202 <bpmn2:sequenceFlow id="SequenceFlow_0ttqcwx" name="yes" sourceRef="ExclusiveGateway_045rm8i" targetRef="preProcessSDNCAssignRequest">
203 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("SDNCInteractionEnabled" ) == true}]]></bpmn2:conditionExpression>
204 </bpmn2:sequenceFlow>
205 <bpmn2:sequenceFlow id="SequenceFlow_0ay5l4b" name="no" sourceRef="ExclusiveGateway_045rm8i" targetRef="EndEvent_3" />
206 </bpmn2:process>
207 <bpmn2:error id="Error_1" name="Java Lang Exception" errorCode="java.lang.Exception" />
208 <bpmn2:error id="Error_2" name="MSO Workflow Exception" errorCode="MSOWorkflowException" />
209 <bpmndi:BPMNDiagram id="BPMNDiagram_1">
210 <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="DoCreateVnf">
211 <bpmndi:BPMNShape id="_BPMNShape_StartEvent_68" bpmnElement="StartEvent_1">
212 <dc:Bounds x="96" y="222" width="36" height="36" />
213 <bpmndi:BPMNLabel>
214 <dc:Bounds x="114" y="263" width="0" height="0" />
215 </bpmndi:BPMNLabel>
216 </bpmndi:BPMNShape>
217 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_285" bpmnElement="initialization">
218 <dc:Bounds x="216" y="200" width="100" height="80" />
219 </bpmndi:BPMNShape>
220 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_1" bpmnElement="SequenceFlow_1" sourceElement="_BPMNShape_StartEvent_68" targetElement="_BPMNShape_ScriptTask_285">
221 <di:waypoint xsi:type="dc:Point" x="132" y="240" />
222 <di:waypoint xsi:type="dc:Point" x="216" y="240" />
223 <bpmndi:BPMNLabel>
224 <dc:Bounds x="165" y="240" width="6" height="6" />
225 </bpmndi:BPMNLabel>
226 </bpmndi:BPMNEdge>
227 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_2" bpmnElement="SequenceFlow_2" sourceElement="_BPMNShape_ScriptTask_285">
228 <di:waypoint xsi:type="dc:Point" x="316" y="240" />
229 <di:waypoint xsi:type="dc:Point" x="406" y="240" />
230 <bpmndi:BPMNLabel>
231 <dc:Bounds x="361" y="225" width="0" height="0" />
232 </bpmndi:BPMNLabel>
233 </bpmndi:BPMNEdge>
234 <bpmndi:BPMNShape id="_BPMNShape_CallActivity_59" bpmnElement="callGetService">
235 <dc:Bounds x="406" y="200" width="100" height="80" />
236 </bpmndi:BPMNShape>
237 <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_229" bpmnElement="serviceInstanceFound" isMarkerVisible="true">
238 <dc:Bounds x="642" y="214" width="50" height="50" />
239 <bpmndi:BPMNLabel>
240 <dc:Bounds x="678" y="244" width="148" height="22" />
241 </bpmndi:BPMNLabel>
242 </bpmndi:BPMNShape>
243 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_4" bpmnElement="SequenceFlow_4" sourceElement="_BPMNShape_CallActivity_59" targetElement="_BPMNShape_ExclusiveGateway_229">
244 <di:waypoint xsi:type="dc:Point" x="506" y="240" />
245 <di:waypoint xsi:type="dc:Point" x="642" y="239" />
246 <bpmndi:BPMNLabel>
247 <dc:Bounds x="574" y="224.5" width="0" height="0" />
248 </bpmndi:BPMNLabel>
249 </bpmndi:BPMNEdge>
250 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_293" bpmnElement="buildWorkflowException">
251 <dc:Bounds x="720" y="115" width="100" height="80" />
252 </bpmndi:BPMNShape>
253 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_5" bpmnElement="notFound" sourceElement="_BPMNShape_ExclusiveGateway_229" targetElement="_BPMNShape_ScriptTask_293">
254 <di:waypoint xsi:type="dc:Point" x="667" y="214" />
255 <di:waypoint xsi:type="dc:Point" x="667" y="155" />
256 <di:waypoint xsi:type="dc:Point" x="720" y="155" />
257 <bpmndi:BPMNLabel>
258 <dc:Bounds x="666" y="174" width="22" height="22" />
259 </bpmndi:BPMNLabel>
260 </bpmndi:BPMNEdge>
261 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_225" bpmnElement="EndEvent_1">
262 <dc:Bounds x="876" y="137" width="36" height="36" />
263 <bpmndi:BPMNLabel>
264 <dc:Bounds x="894" y="178" width="0" height="0" />
265 </bpmndi:BPMNLabel>
266 </bpmndi:BPMNShape>
267 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_6" bpmnElement="SequenceFlow_6" sourceElement="_BPMNShape_ScriptTask_293" targetElement="_BPMNShape_EndEvent_225">
268 <di:waypoint xsi:type="dc:Point" x="820" y="155" />
269 <di:waypoint xsi:type="dc:Point" x="876" y="155" />
270 <bpmndi:BPMNLabel>
271 <dc:Bounds x="846" y="155" width="6" height="6" />
272 </bpmndi:BPMNLabel>
273 </bpmndi:BPMNEdge>
274 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_7" bpmnElement="found" sourceElement="_BPMNShape_ExclusiveGateway_229" targetElement="_BPMNShape_CallActivity_60">
275 <di:waypoint xsi:type="dc:Point" x="667" y="264" />
276 <di:waypoint xsi:type="dc:Point" x="667" y="328" />
277 <di:waypoint xsi:type="dc:Point" x="720" y="328" />
278 <bpmndi:BPMNLabel>
279 <dc:Bounds x="666" y="282" width="29" height="22" />
280 </bpmndi:BPMNLabel>
281 </bpmndi:BPMNEdge>
282 <bpmndi:BPMNShape id="_BPMNShape_CallActivity_60" bpmnElement="callGetVnf">
283 <dc:Bounds x="720" y="288" width="100" height="80" />
284 </bpmndi:BPMNShape>
285 <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_232" bpmnElement="vnfExist" isMarkerVisible="true">
286 <dc:Bounds x="854" y="302" width="50" height="50" />
287 <bpmndi:BPMNLabel>
288 <dc:Bounds x="890" y="332" width="114" height="22" />
289 </bpmndi:BPMNLabel>
290 </bpmndi:BPMNShape>
291 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_9" bpmnElement="SequenceFlow_7" sourceElement="_BPMNShape_CallActivity_60" targetElement="_BPMNShape_ExclusiveGateway_232">
292 <di:waypoint xsi:type="dc:Point" x="820" y="328" />
293 <di:waypoint xsi:type="dc:Point" x="854" y="327" />
294 <bpmndi:BPMNLabel>
295 <dc:Bounds x="804" y="330" width="6" height="6" />
296 </bpmndi:BPMNLabel>
297 </bpmndi:BPMNEdge>
298 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_299" bpmnElement="vnfExistWorkflowException">
299 <dc:Bounds x="926" y="367" width="100" height="80" />
300 </bpmndi:BPMNShape>
301 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_300" bpmnElement="prepareCreateGenericVnf">
302 <dc:Bounds x="935" y="200" width="100" height="80" />
303 </bpmndi:BPMNShape>
304 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_10" bpmnElement="vnfExistYes" sourceElement="_BPMNShape_ExclusiveGateway_232" targetElement="_BPMNShape_ScriptTask_299">
305 <di:waypoint xsi:type="dc:Point" x="879" y="352" />
306 <di:waypoint xsi:type="dc:Point" x="879" y="407" />
307 <di:waypoint xsi:type="dc:Point" x="926" y="407" />
308 <bpmndi:BPMNLabel>
309 <dc:Bounds x="880" y="367" width="29" height="22" />
310 </bpmndi:BPMNLabel>
311 </bpmndi:BPMNEdge>
312 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_11" bpmnElement="vnfExistNo" sourceElement="_BPMNShape_ExclusiveGateway_232" targetElement="_BPMNShape_ScriptTask_300">
313 <di:waypoint xsi:type="dc:Point" x="879" y="302" />
314 <di:waypoint xsi:type="dc:Point" x="879" y="240" />
315 <di:waypoint xsi:type="dc:Point" x="935" y="240" />
316 <bpmndi:BPMNLabel>
317 <dc:Bounds x="880" y="254" width="22" height="22" />
318 </bpmndi:BPMNLabel>
319 </bpmndi:BPMNEdge>
320 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_227" bpmnElement="EndEvent_2">
321 <dc:Bounds x="1092" y="389" width="36" height="36" />
322 <bpmndi:BPMNLabel>
323 <dc:Bounds x="1110" y="430" width="0" height="0" />
324 </bpmndi:BPMNLabel>
325 </bpmndi:BPMNShape>
326 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_12" bpmnElement="SequenceFlow_10" sourceElement="_BPMNShape_ScriptTask_299" targetElement="_BPMNShape_EndEvent_227">
327 <di:waypoint xsi:type="dc:Point" x="1026" y="407" />
328 <di:waypoint xsi:type="dc:Point" x="1092" y="407" />
329 <bpmndi:BPMNLabel>
330 <dc:Bounds x="1034" y="407" width="6" height="6" />
331 </bpmndi:BPMNLabel>
332 </bpmndi:BPMNEdge>
333 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_228" bpmnElement="EndEvent_3">
334 <dc:Bounds x="1126" y="537" width="36" height="36" />
335 <bpmndi:BPMNLabel>
336 <dc:Bounds x="1144" y="578" width="0" height="0" />
337 </bpmndi:BPMNLabel>
338 </bpmndi:BPMNShape>
339 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_13" bpmnElement="SequenceFlow_11" sourceElement="_BPMNShape_ScriptTask_300" targetElement="_BPMNShape_CallActivity_61">
340 <di:waypoint xsi:type="dc:Point" x="1035" y="240" />
341 <di:waypoint xsi:type="dc:Point" x="1080" y="240" />
342 <bpmndi:BPMNLabel>
343 <dc:Bounds x="1058" y="225" width="0" height="0" />
344 </bpmndi:BPMNLabel>
345 </bpmndi:BPMNEdge>
346 <bpmndi:BPMNShape id="_BPMNShape_CallActivity_61" bpmnElement="callPutVnf">
347 <dc:Bounds x="1080" y="200" width="100" height="80" />
348 </bpmndi:BPMNShape>
349 <bpmndi:BPMNShape id="_BPMNShape_SubProcess_32" bpmnElement="javaErrorHandlingSubProcess" isExpanded="true">
350 <dc:Bounds x="109" y="668" width="313" height="169" />
351 </bpmndi:BPMNShape>
352 <bpmndi:BPMNShape id="_BPMNShape_StartEvent_76" bpmnElement="StartEvent_2">
353 <dc:Bounds x="133" y="735" width="36" height="36" />
354 <bpmndi:BPMNLabel>
355 <dc:Bounds x="151" y="776" width="0" height="0" />
356 </bpmndi:BPMNLabel>
357 </bpmndi:BPMNShape>
358 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_308" bpmnElement="processJavaError">
359 <dc:Bounds x="216" y="713" width="100" height="80" />
360 </bpmndi:BPMNShape>
361 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_234" bpmnElement="EndEvent_4">
362 <dc:Bounds x="361" y="735" width="36" height="36" />
363 <bpmndi:BPMNLabel>
364 <dc:Bounds x="379" y="776" width="0" height="0" />
365 </bpmndi:BPMNLabel>
366 </bpmndi:BPMNShape>
367 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_14" bpmnElement="SequenceFlow_8" sourceElement="_BPMNShape_StartEvent_76" targetElement="_BPMNShape_ScriptTask_308">
368 <di:waypoint xsi:type="dc:Point" x="169" y="753" />
369 <di:waypoint xsi:type="dc:Point" x="216" y="753" />
370 <bpmndi:BPMNLabel>
371 <dc:Bounds x="190" y="753" width="0" height="0" />
372 </bpmndi:BPMNLabel>
373 </bpmndi:BPMNEdge>
374 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_15" bpmnElement="SequenceFlow_9" sourceElement="_BPMNShape_ScriptTask_308" targetElement="_BPMNShape_EndEvent_234">
375 <di:waypoint xsi:type="dc:Point" x="316" y="753" />
376 <di:waypoint xsi:type="dc:Point" x="361" y="753" />
377 <bpmndi:BPMNLabel>
378 <dc:Bounds x="336" y="753" width="0" height="0" />
379 </bpmndi:BPMNLabel>
380 </bpmndi:BPMNEdge>
381 <bpmndi:BPMNEdge id="SequenceFlow_1q6udwm_di" bpmnElement="SequenceFlow_1q6udwm">
382 <di:waypoint xsi:type="dc:Point" x="306" y="555" />
383 <di:waypoint xsi:type="dc:Point" x="346" y="555" />
384 <bpmndi:BPMNLabel>
385 <dc:Bounds x="326" y="540" width="0" height="0" />
386 </bpmndi:BPMNLabel>
387 </bpmndi:BPMNEdge>
388 <bpmndi:BPMNEdge id="SequenceFlow_15knw0q_di" bpmnElement="SequenceFlow_15knw0q">
389 <di:waypoint xsi:type="dc:Point" x="446" y="555" />
390 <di:waypoint xsi:type="dc:Point" x="493" y="555" />
391 <bpmndi:BPMNLabel>
392 <dc:Bounds x="470" y="540" width="0" height="0" />
393 </bpmndi:BPMNLabel>
394 </bpmndi:BPMNEdge>
395 <bpmndi:BPMNEdge id="SequenceFlow_0c5h00o_di" bpmnElement="SequenceFlow_0c5h00o">
396 <di:waypoint xsi:type="dc:Point" x="593" y="555" />
397 <di:waypoint xsi:type="dc:Point" x="640" y="555" />
398 <bpmndi:BPMNLabel>
399 <dc:Bounds x="617" y="540" width="0" height="0" />
400 </bpmndi:BPMNLabel>
401 </bpmndi:BPMNEdge>
402 <bpmndi:BPMNEdge id="SequenceFlow_1lalmvp_di" bpmnElement="SequenceFlow_1lalmvp">
403 <di:waypoint xsi:type="dc:Point" x="740" y="555" />
404 <di:waypoint xsi:type="dc:Point" x="794" y="555" />
405 <bpmndi:BPMNLabel>
406 <dc:Bounds x="767" y="540" width="0" height="0" />
407 </bpmndi:BPMNLabel>
408 </bpmndi:BPMNEdge>
409 <bpmndi:BPMNEdge id="SequenceFlow_0eb41vb_di" bpmnElement="SequenceFlow_0eb41vb">
410 <di:waypoint xsi:type="dc:Point" x="894" y="555" />
411 <di:waypoint xsi:type="dc:Point" x="949" y="555" />
412 <bpmndi:BPMNLabel>
413 <dc:Bounds x="922" y="540" width="0" height="0" />
414 </bpmndi:BPMNLabel>
415 </bpmndi:BPMNEdge>
416 <bpmndi:BPMNEdge id="SequenceFlow_15z3gpq_di" bpmnElement="SequenceFlow_15z3gpq">
417 <di:waypoint xsi:type="dc:Point" x="1049" y="555" />
418 <di:waypoint xsi:type="dc:Point" x="1126" y="555" />
419 <bpmndi:BPMNLabel>
420 <dc:Bounds x="1088" y="540" width="0" height="0" />
421 </bpmndi:BPMNLabel>
422 </bpmndi:BPMNEdge>
423 <bpmndi:BPMNEdge id="SequenceFlow_1acnwwu_di" bpmnElement="SequenceFlow_1acnwwu">
424 <di:waypoint xsi:type="dc:Point" x="1180" y="240" />
425 <di:waypoint xsi:type="dc:Point" x="1288" y="240" />
426 <bpmndi:BPMNLabel>
427 <dc:Bounds x="1234" y="225" width="0" height="0" />
428 </bpmndi:BPMNLabel>
429 </bpmndi:BPMNEdge>
430 <bpmndi:BPMNShape id="ScriptTask_01h1rx2_di" bpmnElement="preProcessSDNCAssignRequest">
431 <dc:Bounds x="206" y="515" width="100" height="80" />
432 </bpmndi:BPMNShape>
433 <bpmndi:BPMNShape id="CallActivity_0p5ncd0_di" bpmnElement="callSDNCAdapterVNFTopologyAssign">
434 <dc:Bounds x="346" y="515" width="100" height="80" />
435 </bpmndi:BPMNShape>
436 <bpmndi:BPMNShape id="ScriptTask_1qa39wn_di" bpmnElement="postProcessSDNCAssignRequest">
437 <dc:Bounds x="493" y="515" width="100" height="80" />
438 </bpmndi:BPMNShape>
439 <bpmndi:BPMNShape id="ScriptTask_1rr2xrc_di" bpmnElement="preProcessSDNCActivateRequest">
440 <dc:Bounds x="640" y="515" width="100" height="80" />
441 </bpmndi:BPMNShape>
442 <bpmndi:BPMNShape id="CallActivity_1ieo30p_di" bpmnElement="callSDNCAdapterVNFTopologyActivate">
443 <dc:Bounds x="794" y="515" width="100" height="80" />
444 </bpmndi:BPMNShape>
445 <bpmndi:BPMNShape id="ScriptTask_04votlb_di" bpmnElement="postProcessSDNCActivateRequest">
446 <dc:Bounds x="949" y="515" width="100" height="80" />
447 </bpmndi:BPMNShape>
448 <bpmndi:BPMNShape id="ExclusiveGateway_045rm8i_di" bpmnElement="ExclusiveGateway_045rm8i" isMarkerVisible="true">
449 <dc:Bounds x="1288" y="215" width="50" height="50" />
450 <bpmndi:BPMNLabel>
451 <dc:Bounds x="1286" y="163" width="54" height="36" />
452 </bpmndi:BPMNLabel>
453 </bpmndi:BPMNShape>
454 <bpmndi:BPMNEdge id="SequenceFlow_0ttqcwx_di" bpmnElement="SequenceFlow_0ttqcwx">
455 <di:waypoint xsi:type="dc:Point" x="1313" y="265" />
456 <di:waypoint xsi:type="dc:Point" x="1313" y="475" />
457 <di:waypoint xsi:type="dc:Point" x="106" y="475" />
458 <di:waypoint xsi:type="dc:Point" x="106" y="555" />
459 <di:waypoint xsi:type="dc:Point" x="206" y="555" />
460 <bpmndi:BPMNLabel>
461 <dc:Bounds x="701" y="460" width="18" height="12" />
462 </bpmndi:BPMNLabel>
463 </bpmndi:BPMNEdge>
464 <bpmndi:BPMNEdge id="SequenceFlow_0ay5l4b_di" bpmnElement="SequenceFlow_0ay5l4b">
465 <di:waypoint xsi:type="dc:Point" x="1338" y="240" />
466 <di:waypoint xsi:type="dc:Point" x="1391" y="240" />
467 <di:waypoint xsi:type="dc:Point" x="1391" y="555" />
468 <di:waypoint xsi:type="dc:Point" x="1162" y="555" />
469 <bpmndi:BPMNLabel>
470 <dc:Bounds x="1400" y="397.5" width="12" height="12" />
471 </bpmndi:BPMNLabel>
472 </bpmndi:BPMNEdge>
473 </bpmndi:BPMNPlane>
474 </bpmndi:BPMNDiagram>
475</bpmn2:definitions>