blob: 5e885276767a717236bbb0ab004b0a08f88dfa53 [file] [log] [blame]
xg353yb6b7bef2017-04-11 13:30:42 +02001<?xml version="1.0" encoding="UTF-8"?>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -07002<bpmn2:definitions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bpmn2="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="_DkzPAHB4EeaJwpcpVN5gXw" targetNamespace="http://camunda.org/schema/1.0/bpmn" exporter="Camunda Modeler" exporterVersion="1.4.0" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL BPMN20.xsd">
xg353yb6b7bef2017-04-11 13:30:42 +02003 <bpmn2:process id="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>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070011 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
12DoCreateVnf createVnf = new DoCreateVnf()
xg353yb6b7bef2017-04-11 13:30:42 +020013createVnf.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>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070090 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
91DoCreateVnf createVnf = new DoCreateVnf()
xg353yb6b7bef2017-04-11 13:30:42 +020092createVnf.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>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700105 <bpmn2:outgoing>SequenceFlow_0seif8n</bpmn2:outgoing>
xg353yb6b7bef2017-04-11 13:30:42 +0200106 </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" />
xg353yb6b7bef2017-04-11 13:30:42 +0200136 <bpmn2:scriptTask id="preProcessSDNCAssignRequest" name="PreProcess SDNC Assign Request" scriptFormat="groovy">
137 <bpmn2:incoming>SequenceFlow_0ttqcwx</bpmn2:incoming>
138 <bpmn2:outgoing>SequenceFlow_1q6udwm</bpmn2:outgoing>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700139 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
140DoCreateVnf createVnf = new DoCreateVnf()
xg353yb6b7bef2017-04-11 13:30:42 +0200141createVnf.preProcessSDNCAssignRequest(execution)]]></bpmn2:script>
142 </bpmn2:scriptTask>
143 <bpmn2:callActivity id="callSDNCAdapterVNFTopologyAssign" name="Call SDNC Adapter VNF Topology Assign" calledElement="sdncAdapter">
144 <bpmn2:extensionElements>
145 <camunda:in source="DoCVNF_assignSDNCRequest" target="sdncAdapterWorkflowRequest" />
146 <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" />
147 <camunda:in source="mso-request-id" target="mso-request-id" />
148 <camunda:in source="mso-service-instance-id" target="mso-service-instance-id" />
149 <camunda:out source="WorkflowException" target="WorkflowException" />
150 <camunda:out source="sdncAdapterResponse" target="DoCVNF_assignSDNCAdapterResponse" />
151 <camunda:out source="SDNCA_SuccessIndicator" target="SDNCA_SuccessIndicator" />
152 </bpmn2:extensionElements>
153 <bpmn2:incoming>SequenceFlow_1q6udwm</bpmn2:incoming>
154 <bpmn2:outgoing>SequenceFlow_15knw0q</bpmn2:outgoing>
155 </bpmn2:callActivity>
156 <bpmn2:scriptTask id="postProcessSDNCAssignRequest" name="PostProcess SDNC Assign Request" scriptFormat="groovy">
157 <bpmn2:incoming>SequenceFlow_15knw0q</bpmn2:incoming>
158 <bpmn2:outgoing>SequenceFlow_0c5h00o</bpmn2:outgoing>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700159 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
160
161String response = execution.getVariable("DoCVNF_assignSDNCAdapterResponse")
162
163def createVnfInfra = new DoCreateVnf()
xg353yb6b7bef2017-04-11 13:30:42 +0200164createVnfInfra.validateSDNCResponse(execution, response, "assign")]]></bpmn2:script>
165 </bpmn2:scriptTask>
166 <bpmn2:scriptTask id="preProcessSDNCActivateRequest" name="PreProcess SDNC Activate Request" scriptFormat="groovy">
167 <bpmn2:incoming>SequenceFlow_0c5h00o</bpmn2:incoming>
168 <bpmn2:outgoing>SequenceFlow_1lalmvp</bpmn2:outgoing>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700169 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
170DoCreateVnf createVnf = new DoCreateVnf()
xg353yb6b7bef2017-04-11 13:30:42 +0200171createVnf.preProcessSDNCActivateRequest(execution)]]></bpmn2:script>
172 </bpmn2:scriptTask>
173 <bpmn2:callActivity id="callSDNCAdapterVNFTopologyActivate" name="Call SDNC Adapter VNF Topology Activate" calledElement="sdncAdapter">
174 <bpmn2:extensionElements>
175 <camunda:in source="DoCVNF_activateSDNCRequest" target="sdncAdapterWorkflowRequest" />
176 <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" />
177 <camunda:in source="mso-reqeuest-id" target="mso-request-id" />
178 <camunda:in source="mso-service-instance-id" target="mso-service-instance-id" />
179 <camunda:out source="WorkflowException" target="WorkflowException" />
180 <camunda:out source="sdncAdapterResponse" target="DoCVNF_activateSDNCAdapterResponse" />
181 <camunda:out source="SDNCA_SuccessIndicator" target="SDNCA_SuccessIndicator" />
182 </bpmn2:extensionElements>
183 <bpmn2:incoming>SequenceFlow_1lalmvp</bpmn2:incoming>
184 <bpmn2:outgoing>SequenceFlow_0eb41vb</bpmn2:outgoing>
185 </bpmn2:callActivity>
186 <bpmn2:scriptTask id="postProcessSDNCActivateRequest" name="PostProcess SDNC Activate Request" scriptFormat="groovy">
187 <bpmn2:incoming>SequenceFlow_0eb41vb</bpmn2:incoming>
188 <bpmn2:outgoing>SequenceFlow_15z3gpq</bpmn2:outgoing>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700189 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
190
191String response = execution.getVariable("DoCVNF_assignSDNCAdapterResponse")
192
193def createVnfInfra = new DoCreateVnf()
xg353yb6b7bef2017-04-11 13:30:42 +0200194createVnfInfra.validateSDNCResponse(execution, response, "activate")]]></bpmn2:script>
195 </bpmn2:scriptTask>
196 <bpmn2:exclusiveGateway id="ExclusiveGateway_045rm8i" name="Is SDNC Interaction Enabled?" default="SequenceFlow_0ay5l4b">
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700197 <bpmn2:incoming>SequenceFlow_1gc18ih</bpmn2:incoming>
xg353yb6b7bef2017-04-11 13:30:42 +0200198 <bpmn2:outgoing>SequenceFlow_0ttqcwx</bpmn2:outgoing>
199 <bpmn2:outgoing>SequenceFlow_0ay5l4b</bpmn2:outgoing>
200 </bpmn2:exclusiveGateway>
201 <bpmn2:sequenceFlow id="SequenceFlow_0ttqcwx" name="yes" sourceRef="ExclusiveGateway_045rm8i" targetRef="preProcessSDNCAssignRequest">
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700202 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("sdncVersion" ) == '1707'}]]></bpmn2:conditionExpression>
xg353yb6b7bef2017-04-11 13:30:42 +0200203 </bpmn2:sequenceFlow>
204 <bpmn2:sequenceFlow id="SequenceFlow_0ay5l4b" name="no" sourceRef="ExclusiveGateway_045rm8i" targetRef="EndEvent_3" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700205 <bpmn2:sequenceFlow id="SequenceFlow_0seif8n" sourceRef="callPutVnf" targetRef="postProcessCreateGenericVnf" />
206 <bpmn2:sequenceFlow id="SequenceFlow_1gc18ih" sourceRef="postProcessCreateGenericVnf" targetRef="ExclusiveGateway_045rm8i" />
207 <bpmn2:scriptTask id="postProcessCreateGenericVnf" name="PostProcess Create Generic Vnf" scriptFormat="groovy">
208 <bpmn2:incoming>SequenceFlow_0seif8n</bpmn2:incoming>
209 <bpmn2:outgoing>SequenceFlow_1gc18ih</bpmn2:outgoing>
210 <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
211DoCreateVnf createVnf = new DoCreateVnf()
212createVnf.postProcessCreateGenericVnf(execution)]]></bpmn2:script>
213 </bpmn2:scriptTask>
xg353yb6b7bef2017-04-11 13:30:42 +0200214 </bpmn2:process>
215 <bpmn2:error id="Error_1" name="Java Lang Exception" errorCode="java.lang.Exception" />
216 <bpmn2:error id="Error_2" name="MSO Workflow Exception" errorCode="MSOWorkflowException" />
217 <bpmndi:BPMNDiagram id="BPMNDiagram_1">
218 <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="DoCreateVnf">
219 <bpmndi:BPMNShape id="_BPMNShape_StartEvent_68" bpmnElement="StartEvent_1">
220 <dc:Bounds x="96" y="222" width="36" height="36" />
221 <bpmndi:BPMNLabel>
222 <dc:Bounds x="114" y="263" width="0" height="0" />
223 </bpmndi:BPMNLabel>
224 </bpmndi:BPMNShape>
225 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_285" bpmnElement="initialization">
226 <dc:Bounds x="216" y="200" width="100" height="80" />
227 </bpmndi:BPMNShape>
228 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_1" bpmnElement="SequenceFlow_1" sourceElement="_BPMNShape_StartEvent_68" targetElement="_BPMNShape_ScriptTask_285">
229 <di:waypoint xsi:type="dc:Point" x="132" y="240" />
230 <di:waypoint xsi:type="dc:Point" x="216" y="240" />
231 <bpmndi:BPMNLabel>
232 <dc:Bounds x="165" y="240" width="6" height="6" />
233 </bpmndi:BPMNLabel>
234 </bpmndi:BPMNEdge>
235 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_2" bpmnElement="SequenceFlow_2" sourceElement="_BPMNShape_ScriptTask_285">
236 <di:waypoint xsi:type="dc:Point" x="316" y="240" />
237 <di:waypoint xsi:type="dc:Point" x="406" y="240" />
238 <bpmndi:BPMNLabel>
239 <dc:Bounds x="361" y="225" width="0" height="0" />
240 </bpmndi:BPMNLabel>
241 </bpmndi:BPMNEdge>
242 <bpmndi:BPMNShape id="_BPMNShape_CallActivity_59" bpmnElement="callGetService">
243 <dc:Bounds x="406" y="200" width="100" height="80" />
244 </bpmndi:BPMNShape>
245 <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_229" bpmnElement="serviceInstanceFound" isMarkerVisible="true">
246 <dc:Bounds x="642" y="214" width="50" height="50" />
247 <bpmndi:BPMNLabel>
248 <dc:Bounds x="678" y="244" width="148" height="22" />
249 </bpmndi:BPMNLabel>
250 </bpmndi:BPMNShape>
251 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_4" bpmnElement="SequenceFlow_4" sourceElement="_BPMNShape_CallActivity_59" targetElement="_BPMNShape_ExclusiveGateway_229">
252 <di:waypoint xsi:type="dc:Point" x="506" y="240" />
253 <di:waypoint xsi:type="dc:Point" x="642" y="239" />
254 <bpmndi:BPMNLabel>
255 <dc:Bounds x="574" y="224.5" width="0" height="0" />
256 </bpmndi:BPMNLabel>
257 </bpmndi:BPMNEdge>
258 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_293" bpmnElement="buildWorkflowException">
259 <dc:Bounds x="720" y="115" width="100" height="80" />
260 </bpmndi:BPMNShape>
261 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_5" bpmnElement="notFound" sourceElement="_BPMNShape_ExclusiveGateway_229" targetElement="_BPMNShape_ScriptTask_293">
262 <di:waypoint xsi:type="dc:Point" x="667" y="214" />
263 <di:waypoint xsi:type="dc:Point" x="667" y="155" />
264 <di:waypoint xsi:type="dc:Point" x="720" y="155" />
265 <bpmndi:BPMNLabel>
266 <dc:Bounds x="666" y="174" width="22" height="22" />
267 </bpmndi:BPMNLabel>
268 </bpmndi:BPMNEdge>
269 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_225" bpmnElement="EndEvent_1">
270 <dc:Bounds x="876" y="137" width="36" height="36" />
271 <bpmndi:BPMNLabel>
272 <dc:Bounds x="894" y="178" width="0" height="0" />
273 </bpmndi:BPMNLabel>
274 </bpmndi:BPMNShape>
275 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_6" bpmnElement="SequenceFlow_6" sourceElement="_BPMNShape_ScriptTask_293" targetElement="_BPMNShape_EndEvent_225">
276 <di:waypoint xsi:type="dc:Point" x="820" y="155" />
277 <di:waypoint xsi:type="dc:Point" x="876" y="155" />
278 <bpmndi:BPMNLabel>
279 <dc:Bounds x="846" y="155" width="6" height="6" />
280 </bpmndi:BPMNLabel>
281 </bpmndi:BPMNEdge>
282 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_7" bpmnElement="found" sourceElement="_BPMNShape_ExclusiveGateway_229" targetElement="_BPMNShape_CallActivity_60">
283 <di:waypoint xsi:type="dc:Point" x="667" y="264" />
284 <di:waypoint xsi:type="dc:Point" x="667" y="328" />
285 <di:waypoint xsi:type="dc:Point" x="720" y="328" />
286 <bpmndi:BPMNLabel>
287 <dc:Bounds x="666" y="282" width="29" height="22" />
288 </bpmndi:BPMNLabel>
289 </bpmndi:BPMNEdge>
290 <bpmndi:BPMNShape id="_BPMNShape_CallActivity_60" bpmnElement="callGetVnf">
291 <dc:Bounds x="720" y="288" width="100" height="80" />
292 </bpmndi:BPMNShape>
293 <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_232" bpmnElement="vnfExist" isMarkerVisible="true">
294 <dc:Bounds x="854" y="302" width="50" height="50" />
295 <bpmndi:BPMNLabel>
296 <dc:Bounds x="890" y="332" width="114" height="22" />
297 </bpmndi:BPMNLabel>
298 </bpmndi:BPMNShape>
299 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_9" bpmnElement="SequenceFlow_7" sourceElement="_BPMNShape_CallActivity_60" targetElement="_BPMNShape_ExclusiveGateway_232">
300 <di:waypoint xsi:type="dc:Point" x="820" y="328" />
301 <di:waypoint xsi:type="dc:Point" x="854" y="327" />
302 <bpmndi:BPMNLabel>
303 <dc:Bounds x="804" y="330" width="6" height="6" />
304 </bpmndi:BPMNLabel>
305 </bpmndi:BPMNEdge>
306 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_299" bpmnElement="vnfExistWorkflowException">
307 <dc:Bounds x="926" y="367" width="100" height="80" />
308 </bpmndi:BPMNShape>
309 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_300" bpmnElement="prepareCreateGenericVnf">
310 <dc:Bounds x="935" y="200" width="100" height="80" />
311 </bpmndi:BPMNShape>
312 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_10" bpmnElement="vnfExistYes" sourceElement="_BPMNShape_ExclusiveGateway_232" targetElement="_BPMNShape_ScriptTask_299">
313 <di:waypoint xsi:type="dc:Point" x="879" y="352" />
314 <di:waypoint xsi:type="dc:Point" x="879" y="407" />
315 <di:waypoint xsi:type="dc:Point" x="926" y="407" />
316 <bpmndi:BPMNLabel>
317 <dc:Bounds x="880" y="367" width="29" height="22" />
318 </bpmndi:BPMNLabel>
319 </bpmndi:BPMNEdge>
320 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_11" bpmnElement="vnfExistNo" sourceElement="_BPMNShape_ExclusiveGateway_232" targetElement="_BPMNShape_ScriptTask_300">
321 <di:waypoint xsi:type="dc:Point" x="879" y="302" />
322 <di:waypoint xsi:type="dc:Point" x="879" y="240" />
323 <di:waypoint xsi:type="dc:Point" x="935" y="240" />
324 <bpmndi:BPMNLabel>
325 <dc:Bounds x="880" y="254" width="22" height="22" />
326 </bpmndi:BPMNLabel>
327 </bpmndi:BPMNEdge>
328 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_227" bpmnElement="EndEvent_2">
329 <dc:Bounds x="1092" y="389" width="36" height="36" />
330 <bpmndi:BPMNLabel>
331 <dc:Bounds x="1110" y="430" width="0" height="0" />
332 </bpmndi:BPMNLabel>
333 </bpmndi:BPMNShape>
334 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_12" bpmnElement="SequenceFlow_10" sourceElement="_BPMNShape_ScriptTask_299" targetElement="_BPMNShape_EndEvent_227">
335 <di:waypoint xsi:type="dc:Point" x="1026" y="407" />
336 <di:waypoint xsi:type="dc:Point" x="1092" y="407" />
337 <bpmndi:BPMNLabel>
338 <dc:Bounds x="1034" y="407" width="6" height="6" />
339 </bpmndi:BPMNLabel>
340 </bpmndi:BPMNEdge>
341 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_228" bpmnElement="EndEvent_3">
342 <dc:Bounds x="1126" y="537" width="36" height="36" />
343 <bpmndi:BPMNLabel>
344 <dc:Bounds x="1144" y="578" width="0" height="0" />
345 </bpmndi:BPMNLabel>
346 </bpmndi:BPMNShape>
347 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_13" bpmnElement="SequenceFlow_11" sourceElement="_BPMNShape_ScriptTask_300" targetElement="_BPMNShape_CallActivity_61">
348 <di:waypoint xsi:type="dc:Point" x="1035" y="240" />
349 <di:waypoint xsi:type="dc:Point" x="1080" y="240" />
350 <bpmndi:BPMNLabel>
351 <dc:Bounds x="1058" y="225" width="0" height="0" />
352 </bpmndi:BPMNLabel>
353 </bpmndi:BPMNEdge>
354 <bpmndi:BPMNShape id="_BPMNShape_CallActivity_61" bpmnElement="callPutVnf">
355 <dc:Bounds x="1080" y="200" width="100" height="80" />
356 </bpmndi:BPMNShape>
357 <bpmndi:BPMNShape id="_BPMNShape_SubProcess_32" bpmnElement="javaErrorHandlingSubProcess" isExpanded="true">
358 <dc:Bounds x="109" y="668" width="313" height="169" />
359 </bpmndi:BPMNShape>
360 <bpmndi:BPMNShape id="_BPMNShape_StartEvent_76" bpmnElement="StartEvent_2">
361 <dc:Bounds x="133" y="735" width="36" height="36" />
362 <bpmndi:BPMNLabel>
363 <dc:Bounds x="151" y="776" width="0" height="0" />
364 </bpmndi:BPMNLabel>
365 </bpmndi:BPMNShape>
366 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_308" bpmnElement="processJavaError">
367 <dc:Bounds x="216" y="713" width="100" height="80" />
368 </bpmndi:BPMNShape>
369 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_234" bpmnElement="EndEvent_4">
370 <dc:Bounds x="361" y="735" width="36" height="36" />
371 <bpmndi:BPMNLabel>
372 <dc:Bounds x="379" y="776" width="0" height="0" />
373 </bpmndi:BPMNLabel>
374 </bpmndi:BPMNShape>
375 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_14" bpmnElement="SequenceFlow_8" sourceElement="_BPMNShape_StartEvent_76" targetElement="_BPMNShape_ScriptTask_308">
376 <di:waypoint xsi:type="dc:Point" x="169" y="753" />
377 <di:waypoint xsi:type="dc:Point" x="216" y="753" />
378 <bpmndi:BPMNLabel>
379 <dc:Bounds x="190" y="753" width="0" height="0" />
380 </bpmndi:BPMNLabel>
381 </bpmndi:BPMNEdge>
382 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_15" bpmnElement="SequenceFlow_9" sourceElement="_BPMNShape_ScriptTask_308" targetElement="_BPMNShape_EndEvent_234">
383 <di:waypoint xsi:type="dc:Point" x="316" y="753" />
384 <di:waypoint xsi:type="dc:Point" x="361" y="753" />
385 <bpmndi:BPMNLabel>
386 <dc:Bounds x="336" y="753" width="0" height="0" />
387 </bpmndi:BPMNLabel>
388 </bpmndi:BPMNEdge>
389 <bpmndi:BPMNEdge id="SequenceFlow_1q6udwm_di" bpmnElement="SequenceFlow_1q6udwm">
390 <di:waypoint xsi:type="dc:Point" x="306" y="555" />
391 <di:waypoint xsi:type="dc:Point" x="346" y="555" />
392 <bpmndi:BPMNLabel>
393 <dc:Bounds x="326" y="540" width="0" height="0" />
394 </bpmndi:BPMNLabel>
395 </bpmndi:BPMNEdge>
396 <bpmndi:BPMNEdge id="SequenceFlow_15knw0q_di" bpmnElement="SequenceFlow_15knw0q">
397 <di:waypoint xsi:type="dc:Point" x="446" y="555" />
398 <di:waypoint xsi:type="dc:Point" x="493" y="555" />
399 <bpmndi:BPMNLabel>
400 <dc:Bounds x="470" y="540" width="0" height="0" />
401 </bpmndi:BPMNLabel>
402 </bpmndi:BPMNEdge>
403 <bpmndi:BPMNEdge id="SequenceFlow_0c5h00o_di" bpmnElement="SequenceFlow_0c5h00o">
404 <di:waypoint xsi:type="dc:Point" x="593" y="555" />
405 <di:waypoint xsi:type="dc:Point" x="640" y="555" />
406 <bpmndi:BPMNLabel>
407 <dc:Bounds x="617" y="540" width="0" height="0" />
408 </bpmndi:BPMNLabel>
409 </bpmndi:BPMNEdge>
410 <bpmndi:BPMNEdge id="SequenceFlow_1lalmvp_di" bpmnElement="SequenceFlow_1lalmvp">
411 <di:waypoint xsi:type="dc:Point" x="740" y="555" />
412 <di:waypoint xsi:type="dc:Point" x="794" y="555" />
413 <bpmndi:BPMNLabel>
414 <dc:Bounds x="767" y="540" width="0" height="0" />
415 </bpmndi:BPMNLabel>
416 </bpmndi:BPMNEdge>
417 <bpmndi:BPMNEdge id="SequenceFlow_0eb41vb_di" bpmnElement="SequenceFlow_0eb41vb">
418 <di:waypoint xsi:type="dc:Point" x="894" y="555" />
419 <di:waypoint xsi:type="dc:Point" x="949" y="555" />
420 <bpmndi:BPMNLabel>
421 <dc:Bounds x="922" y="540" width="0" height="0" />
422 </bpmndi:BPMNLabel>
423 </bpmndi:BPMNEdge>
424 <bpmndi:BPMNEdge id="SequenceFlow_15z3gpq_di" bpmnElement="SequenceFlow_15z3gpq">
425 <di:waypoint xsi:type="dc:Point" x="1049" y="555" />
426 <di:waypoint xsi:type="dc:Point" x="1126" y="555" />
427 <bpmndi:BPMNLabel>
428 <dc:Bounds x="1088" y="540" width="0" height="0" />
429 </bpmndi:BPMNLabel>
430 </bpmndi:BPMNEdge>
xg353yb6b7bef2017-04-11 13:30:42 +0200431 <bpmndi:BPMNShape id="ScriptTask_01h1rx2_di" bpmnElement="preProcessSDNCAssignRequest">
432 <dc:Bounds x="206" y="515" width="100" height="80" />
433 </bpmndi:BPMNShape>
434 <bpmndi:BPMNShape id="CallActivity_0p5ncd0_di" bpmnElement="callSDNCAdapterVNFTopologyAssign">
435 <dc:Bounds x="346" y="515" width="100" height="80" />
436 </bpmndi:BPMNShape>
437 <bpmndi:BPMNShape id="ScriptTask_1qa39wn_di" bpmnElement="postProcessSDNCAssignRequest">
438 <dc:Bounds x="493" y="515" width="100" height="80" />
439 </bpmndi:BPMNShape>
440 <bpmndi:BPMNShape id="ScriptTask_1rr2xrc_di" bpmnElement="preProcessSDNCActivateRequest">
441 <dc:Bounds x="640" y="515" width="100" height="80" />
442 </bpmndi:BPMNShape>
443 <bpmndi:BPMNShape id="CallActivity_1ieo30p_di" bpmnElement="callSDNCAdapterVNFTopologyActivate">
444 <dc:Bounds x="794" y="515" width="100" height="80" />
445 </bpmndi:BPMNShape>
446 <bpmndi:BPMNShape id="ScriptTask_04votlb_di" bpmnElement="postProcessSDNCActivateRequest">
447 <dc:Bounds x="949" y="515" width="100" height="80" />
448 </bpmndi:BPMNShape>
449 <bpmndi:BPMNShape id="ExclusiveGateway_045rm8i_di" bpmnElement="ExclusiveGateway_045rm8i" isMarkerVisible="true">
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700450 <dc:Bounds x="1336" y="215" width="50" height="50" />
xg353yb6b7bef2017-04-11 13:30:42 +0200451 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700452 <dc:Bounds x="1334" y="163" width="54" height="36" />
xg353yb6b7bef2017-04-11 13:30:42 +0200453 </bpmndi:BPMNLabel>
454 </bpmndi:BPMNShape>
455 <bpmndi:BPMNEdge id="SequenceFlow_0ttqcwx_di" bpmnElement="SequenceFlow_0ttqcwx">
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700456 <di:waypoint xsi:type="dc:Point" x="1361" y="265" />
457 <di:waypoint xsi:type="dc:Point" x="1361" y="475" />
xg353yb6b7bef2017-04-11 13:30:42 +0200458 <di:waypoint xsi:type="dc:Point" x="106" y="475" />
459 <di:waypoint xsi:type="dc:Point" x="106" y="555" />
460 <di:waypoint xsi:type="dc:Point" x="206" y="555" />
461 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700462 <dc:Bounds x="726" y="460" width="18" height="12" />
xg353yb6b7bef2017-04-11 13:30:42 +0200463 </bpmndi:BPMNLabel>
464 </bpmndi:BPMNEdge>
465 <bpmndi:BPMNEdge id="SequenceFlow_0ay5l4b_di" bpmnElement="SequenceFlow_0ay5l4b">
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700466 <di:waypoint xsi:type="dc:Point" x="1361" y="265" />
467 <di:waypoint xsi:type="dc:Point" x="1361" y="555" />
xg353yb6b7bef2017-04-11 13:30:42 +0200468 <di:waypoint xsi:type="dc:Point" x="1162" y="555" />
469 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700470 <dc:Bounds x="1400" y="398" width="12" height="12" />
xg353yb6b7bef2017-04-11 13:30:42 +0200471 </bpmndi:BPMNLabel>
472 </bpmndi:BPMNEdge>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700473 <bpmndi:BPMNEdge id="SequenceFlow_0seif8n_di" bpmnElement="SequenceFlow_0seif8n">
474 <di:waypoint xsi:type="dc:Point" x="1180" y="240" />
475 <di:waypoint xsi:type="dc:Point" x="1213" y="240" />
476 <bpmndi:BPMNLabel>
477 <dc:Bounds x="1197" y="225" width="0" height="0" />
478 </bpmndi:BPMNLabel>
479 </bpmndi:BPMNEdge>
480 <bpmndi:BPMNEdge id="SequenceFlow_1gc18ih_di" bpmnElement="SequenceFlow_1gc18ih">
481 <di:waypoint xsi:type="dc:Point" x="1313" y="240" />
482 <di:waypoint xsi:type="dc:Point" x="1336" y="240" />
483 <bpmndi:BPMNLabel>
484 <dc:Bounds x="1325" y="225" width="0" height="0" />
485 </bpmndi:BPMNLabel>
486 </bpmndi:BPMNEdge>
487 <bpmndi:BPMNShape id="ScriptTask_0y55cyz_di" bpmnElement="postProcessCreateGenericVnf">
488 <dc:Bounds x="1213" y="200" width="100" height="80" />
489 </bpmndi:BPMNShape>
xg353yb6b7bef2017-04-11 13:30:42 +0200490 </bpmndi:BPMNPlane>
491 </bpmndi:BPMNDiagram>
492</bpmn2:definitions>