AT&T 1712 and 1802 release code
[so.git] / bpmn / MSOInfrastructureBPMN / src / main / resources / process / CreateVFCNSResource.bpmn
1 <?xml version="1.0" encoding="UTF-8"?>
2 <bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" id="Definitions_1" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="1.10.0">
3   <bpmn:process id="CreateVFCNSResource" name="CreateVFCNSResource" isExecutable="true">
4     <bpmn:startEvent id="createNS_StartEvent" name="createNS_StartEvent">
5       <bpmn:outgoing>SequenceFlow_1qo2pln</bpmn:outgoing>
6     </bpmn:startEvent>
7     <bpmn:sequenceFlow id="SequenceFlow_1qo2pln" sourceRef="createNS_StartEvent" targetRef="PreprocessIncomingRequest_task" />
8     <bpmn:sequenceFlow id="SequenceFlow_0khtova" sourceRef="PreprocessIncomingRequest_task" targetRef="Task_09nzhwk" />
9     <bpmn:sequenceFlow id="SequenceFlow_1uiz85h" sourceRef="Task_09nzhwk" targetRef="ExclusiveGateway_0zfksms" />
10     <bpmn:scriptTask id="Task_09nzhwk" name="Create Network Service" scriptFormat="groovy">
11       <bpmn:incoming>SequenceFlow_0khtova</bpmn:incoming>
12       <bpmn:outgoing>SequenceFlow_1uiz85h</bpmn:outgoing>
13       <bpmn:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
14 def dcsi = new CreateVFCNSResource()
15 dcsi.createNetworkService(execution)]]></bpmn:script>
16     </bpmn:scriptTask>
17     <bpmn:scriptTask id="PreprocessIncomingRequest_task" name="Preprocess Incoming Request" scriptFormat="groovy">
18       <bpmn:incoming>SequenceFlow_1qo2pln</bpmn:incoming>
19       <bpmn:outgoing>SequenceFlow_0khtova</bpmn:outgoing>
20       <bpmn:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
21 def dcsi = new CreateVFCNSResource()
22 dcsi.preProcessRequest(execution)]]></bpmn:script>
23     </bpmn:scriptTask>
24     <bpmn:scriptTask id="instantiate_NSTask" name="Instantiate Network Service" scriptFormat="groovy">
25       <bpmn:incoming>createNSSuccess_SequenceFlow</bpmn:incoming>
26       <bpmn:outgoing>SequenceFlow_1ywe21t</bpmn:outgoing>
27       <bpmn:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
28 def dcsi = new CreateVFCNSResource()
29 dcsi.instantiateNetworkService(execution)]]></bpmn:script>
30     </bpmn:scriptTask>
31     <bpmn:exclusiveGateway id="ExclusiveGateway_0zfksms" name="Create NS Success?">
32       <bpmn:incoming>SequenceFlow_1uiz85h</bpmn:incoming>
33       <bpmn:outgoing>createNSSuccess_SequenceFlow</bpmn:outgoing>
34       <bpmn:outgoing>createNSFailed_SequenceFlow</bpmn:outgoing>
35     </bpmn:exclusiveGateway>
36     <bpmn:sequenceFlow id="createNSSuccess_SequenceFlow" name="yes" sourceRef="ExclusiveGateway_0zfksms" targetRef="instantiate_NSTask">
37       <bpmn:conditionExpression xsi:type="bpmn:tFormalExpression"><![CDATA[#{(execution.getVariable("nsInstanceName" )  != null && execution.getVariable("nsInstanceName" )  != "" )}]]></bpmn:conditionExpression>
38     </bpmn:sequenceFlow>
39     <bpmn:sequenceFlow id="createNSFailed_SequenceFlow" name="no" sourceRef="ExclusiveGateway_0zfksms" targetRef="createNSFailed_EndEvent">
40       <bpmn:conditionExpression xsi:type="bpmn:tFormalExpression"><![CDATA[#{(execution.getVariable("nsInstanceName" )  == null || execution.getVariable("nsInstanceName" )  == "" )}]]></bpmn:conditionExpression>
41     </bpmn:sequenceFlow>
42     <bpmn:exclusiveGateway id="ExclusiveGateway_1is7zys" name="Instantiate NS Success?">
43       <bpmn:incoming>SequenceFlow_1ywe21t</bpmn:incoming>
44       <bpmn:outgoing>instantiateFailed_SequenceFlow</bpmn:outgoing>
45       <bpmn:outgoing>instantiateSuccess_SequenceFlow</bpmn:outgoing>
46     </bpmn:exclusiveGateway>
47     <bpmn:sequenceFlow id="SequenceFlow_1ywe21t" sourceRef="instantiate_NSTask" targetRef="ExclusiveGateway_1is7zys" />
48     <bpmn:sequenceFlow id="instantiateFailed_SequenceFlow" name="no" sourceRef="ExclusiveGateway_1is7zys" targetRef="EndEvent_1gkvvpn">
49       <bpmn:conditionExpression xsi:type="bpmn:tFormalExpression"><![CDATA[#{(execution.getVariable("jobId" )  == null || execution.getVariable("jobId" )  == "" )}]]></bpmn:conditionExpression>
50     </bpmn:sequenceFlow>
51     <bpmn:sequenceFlow id="instantiateSuccess_SequenceFlow" name="yes" sourceRef="ExclusiveGateway_1is7zys" targetRef="queryJob_Task">
52       <bpmn:conditionExpression xsi:type="bpmn:tFormalExpression"><![CDATA[#{(execution.getVariable("jobId" )  != null && execution.getVariable("jobId" )  != "" )}]]></bpmn:conditionExpression>
53     </bpmn:sequenceFlow>
54     <bpmn:exclusiveGateway id="ExclusiveGateway_15492gl" name="Instantiate Finished?">
55       <bpmn:incoming>SequenceFlow_0xqo13p</bpmn:incoming>
56       <bpmn:outgoing>operationFinished_SequenceFlow</bpmn:outgoing>
57       <bpmn:outgoing>operationProcessing_SequenceFlow</bpmn:outgoing>
58     </bpmn:exclusiveGateway>
59     <bpmn:sequenceFlow id="operationFinished_SequenceFlow" name="yes" sourceRef="ExclusiveGateway_15492gl" targetRef="finishNSCreate_Task">
60       <bpmn:conditionExpression xsi:type="bpmn:tFormalExpression"><![CDATA[#{(execution.getVariable("operationStatus" )  != "processing" )}]]></bpmn:conditionExpression>
61     </bpmn:sequenceFlow>
62     <bpmn:sequenceFlow id="operationProcessing_SequenceFlow" name="no" sourceRef="ExclusiveGateway_15492gl" targetRef="timeDelay_Task">
63       <bpmn:conditionExpression xsi:type="bpmn:tFormalExpression"><![CDATA[#{(execution.getVariable("operationStatus" )  == "processing" )}]]></bpmn:conditionExpression>
64     </bpmn:sequenceFlow>
65     <bpmn:sequenceFlow id="SequenceFlow_0cq2q6g" sourceRef="finishNSCreate_Task" targetRef="EndEvent_1x6k78c" />
66     <bpmn:endEvent id="createNSFailed_EndEvent" name="createNSFailed">
67       <bpmn:incoming>createNSFailed_SequenceFlow</bpmn:incoming>
68     </bpmn:endEvent>
69     <bpmn:endEvent id="EndEvent_1gkvvpn">
70       <bpmn:incoming>instantiateFailed_SequenceFlow</bpmn:incoming>
71     </bpmn:endEvent>
72     <bpmn:endEvent id="EndEvent_1x6k78c">
73       <bpmn:incoming>SequenceFlow_0cq2q6g</bpmn:incoming>
74     </bpmn:endEvent>
75     <bpmn:scriptTask id="queryJob_Task" name="Query NS Progress" scriptFormat="groovy">
76       <bpmn:incoming>instantiateSuccess_SequenceFlow</bpmn:incoming>
77       <bpmn:incoming>SequenceFlow_1gsbpxj</bpmn:incoming>
78       <bpmn:outgoing>SequenceFlow_0xqo13p</bpmn:outgoing>
79       <bpmn:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
80 def dcsi = new CreateVFCNSResource()
81 dcsi.queryNSProgress(execution)]]></bpmn:script>
82     </bpmn:scriptTask>
83     <bpmn:scriptTask id="finishNSCreate_Task" name="Finish NS Create">
84       <bpmn:incoming>operationFinished_SequenceFlow</bpmn:incoming>
85       <bpmn:outgoing>SequenceFlow_0cq2q6g</bpmn:outgoing>
86       <bpmn:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
87 def dcsi = new CreateVFCNSResource()
88 dcsi.addNSRelationship(execution)]]></bpmn:script>
89     </bpmn:scriptTask>
90     <bpmn:sequenceFlow id="SequenceFlow_0xqo13p" sourceRef="queryJob_Task" targetRef="ExclusiveGateway_15492gl" />
91     <bpmn:scriptTask id="timeDelay_Task" name="timeDelay" scriptFormat="groovy">
92       <bpmn:incoming>operationProcessing_SequenceFlow</bpmn:incoming>
93       <bpmn:outgoing>SequenceFlow_1gsbpxj</bpmn:outgoing>
94       <bpmn:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
95 def dcsi = new CreateVFCNSResource()
96 dcsi.timeDelay(execution)]]></bpmn:script>
97     </bpmn:scriptTask>
98     <bpmn:sequenceFlow id="SequenceFlow_1gsbpxj" sourceRef="timeDelay_Task" targetRef="queryJob_Task" />
99   </bpmn:process>
100   <bpmndi:BPMNDiagram id="BPMNDiagram_1">
101     <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="CreateVFCNSResource">
102       <bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="createNS_StartEvent">
103         <dc:Bounds x="175" y="111" width="36" height="36" />
104         <bpmndi:BPMNLabel>
105           <dc:Bounds x="152" y="147" width="83" height="24" />
106         </bpmndi:BPMNLabel>
107       </bpmndi:BPMNShape>
108       <bpmndi:BPMNEdge id="SequenceFlow_1qo2pln_di" bpmnElement="SequenceFlow_1qo2pln">
109         <di:waypoint xsi:type="dc:Point" x="211" y="129" />
110         <di:waypoint xsi:type="dc:Point" x="251" y="129" />
111         <di:waypoint xsi:type="dc:Point" x="251" y="129" />
112         <di:waypoint xsi:type="dc:Point" x="293" y="129" />
113         <bpmndi:BPMNLabel>
114           <dc:Bounds x="266" y="123" width="0" height="12" />
115         </bpmndi:BPMNLabel>
116       </bpmndi:BPMNEdge>
117       <bpmndi:BPMNEdge id="SequenceFlow_0khtova_di" bpmnElement="SequenceFlow_0khtova">
118         <di:waypoint xsi:type="dc:Point" x="393" y="129" />
119         <di:waypoint xsi:type="dc:Point" x="479" y="129" />
120         <bpmndi:BPMNLabel>
121           <dc:Bounds x="436" y="108" width="0" height="12" />
122         </bpmndi:BPMNLabel>
123       </bpmndi:BPMNEdge>
124       <bpmndi:BPMNEdge id="SequenceFlow_1uiz85h_di" bpmnElement="SequenceFlow_1uiz85h">
125         <di:waypoint xsi:type="dc:Point" x="579" y="129" />
126         <di:waypoint xsi:type="dc:Point" x="683" y="129" />
127         <bpmndi:BPMNLabel>
128           <dc:Bounds x="631" y="108" width="0" height="12" />
129         </bpmndi:BPMNLabel>
130       </bpmndi:BPMNEdge>
131       <bpmndi:BPMNShape id="ScriptTask_1dw39hg_di" bpmnElement="Task_09nzhwk">
132         <dc:Bounds x="479" y="89" width="100" height="80" />
133       </bpmndi:BPMNShape>
134       <bpmndi:BPMNShape id="ScriptTask_03j6ogo_di" bpmnElement="PreprocessIncomingRequest_task">
135         <dc:Bounds x="293" y="89" width="100" height="80" />
136       </bpmndi:BPMNShape>
137       <bpmndi:BPMNShape id="ScriptTask_1qmmew8_di" bpmnElement="instantiate_NSTask">
138         <dc:Bounds x="839" y="89" width="100" height="80" />
139       </bpmndi:BPMNShape>
140       <bpmndi:BPMNShape id="ExclusiveGateway_0zfksms_di" bpmnElement="ExclusiveGateway_0zfksms" isMarkerVisible="true">
141         <dc:Bounds x="683" y="104" width="50" height="50" />
142         <bpmndi:BPMNLabel>
143           <dc:Bounds x="685" y="158" width="52" height="24" />
144         </bpmndi:BPMNLabel>
145       </bpmndi:BPMNShape>
146       <bpmndi:BPMNEdge id="SequenceFlow_1rt03zl_di" bpmnElement="createNSSuccess_SequenceFlow">
147         <di:waypoint xsi:type="dc:Point" x="733" y="129" />
148         <di:waypoint xsi:type="dc:Point" x="839" y="129" />
149         <bpmndi:BPMNLabel>
150           <dc:Bounds x="777" y="108" width="19" height="12" />
151         </bpmndi:BPMNLabel>
152       </bpmndi:BPMNEdge>
153       <bpmndi:BPMNEdge id="SequenceFlow_0df541u_di" bpmnElement="createNSFailed_SequenceFlow">
154         <di:waypoint xsi:type="dc:Point" x="708" y="104" />
155         <di:waypoint xsi:type="dc:Point" x="708" y="33" />
156         <bpmndi:BPMNLabel>
157           <dc:Bounds x="717" y="63" width="12" height="12" />
158         </bpmndi:BPMNLabel>
159       </bpmndi:BPMNEdge>
160       <bpmndi:BPMNShape id="ExclusiveGateway_1is7zys_di" bpmnElement="ExclusiveGateway_1is7zys" isMarkerVisible="true">
161         <dc:Bounds x="1034" y="105" width="50" height="50" />
162         <bpmndi:BPMNLabel>
163           <dc:Bounds x="1029" y="159" width="69" height="24" />
164         </bpmndi:BPMNLabel>
165       </bpmndi:BPMNShape>
166       <bpmndi:BPMNEdge id="SequenceFlow_1ywe21t_di" bpmnElement="SequenceFlow_1ywe21t">
167         <di:waypoint xsi:type="dc:Point" x="939" y="129" />
168         <di:waypoint xsi:type="dc:Point" x="1034" y="130" />
169         <bpmndi:BPMNLabel>
170           <dc:Bounds x="986.5" y="108.5" width="0" height="12" />
171         </bpmndi:BPMNLabel>
172       </bpmndi:BPMNEdge>
173       <bpmndi:BPMNEdge id="SequenceFlow_0j7xo94_di" bpmnElement="instantiateFailed_SequenceFlow">
174         <di:waypoint xsi:type="dc:Point" x="1059" y="105" />
175         <di:waypoint xsi:type="dc:Point" x="1059" y="33" />
176         <bpmndi:BPMNLabel>
177           <dc:Bounds x="1068" y="63" width="12" height="12" />
178         </bpmndi:BPMNLabel>
179       </bpmndi:BPMNEdge>
180       <bpmndi:BPMNEdge id="SequenceFlow_1ui2n9l_di" bpmnElement="instantiateSuccess_SequenceFlow">
181         <di:waypoint xsi:type="dc:Point" x="1059" y="155" />
182         <di:waypoint xsi:type="dc:Point" x="1059" y="271" />
183         <bpmndi:BPMNLabel>
184           <dc:Bounds x="1066" y="207" width="19" height="12" />
185         </bpmndi:BPMNLabel>
186       </bpmndi:BPMNEdge>
187       <bpmndi:BPMNShape id="ExclusiveGateway_15492gl_di" bpmnElement="ExclusiveGateway_15492gl" isMarkerVisible="true">
188         <dc:Bounds x="1034" y="570" width="50" height="50" />
189         <bpmndi:BPMNLabel>
190           <dc:Bounds x="1038" y="624" width="50" height="24" />
191         </bpmndi:BPMNLabel>
192       </bpmndi:BPMNShape>
193       <bpmndi:BPMNEdge id="SequenceFlow_0hftgi6_di" bpmnElement="operationFinished_SequenceFlow">
194         <di:waypoint xsi:type="dc:Point" x="1034" y="595" />
195         <di:waypoint xsi:type="dc:Point" x="909" y="595" />
196         <di:waypoint xsi:type="dc:Point" x="909" y="595" />
197         <di:waypoint xsi:type="dc:Point" x="783" y="595" />
198         <bpmndi:BPMNLabel>
199           <dc:Bounds x="963" y="574" width="19" height="12" />
200         </bpmndi:BPMNLabel>
201       </bpmndi:BPMNEdge>
202       <bpmndi:BPMNEdge id="SequenceFlow_0omec46_di" bpmnElement="operationProcessing_SequenceFlow">
203         <di:waypoint xsi:type="dc:Point" x="1084" y="595" />
204         <di:waypoint xsi:type="dc:Point" x="1212" y="595" />
205         <di:waypoint xsi:type="dc:Point" x="1212" y="486" />
206         <bpmndi:BPMNLabel>
207           <dc:Bounds x="1131" y="607" width="12" height="12" />
208         </bpmndi:BPMNLabel>
209       </bpmndi:BPMNEdge>
210       <bpmndi:BPMNEdge id="SequenceFlow_0cq2q6g_di" bpmnElement="SequenceFlow_0cq2q6g">
211         <di:waypoint xsi:type="dc:Point" x="683" y="595" />
212         <di:waypoint xsi:type="dc:Point" x="520" y="595" />
213         <bpmndi:BPMNLabel>
214           <dc:Bounds x="556.5" y="574" width="90" height="12" />
215         </bpmndi:BPMNLabel>
216       </bpmndi:BPMNEdge>
217       <bpmndi:BPMNShape id="EndEvent_1ido9wi_di" bpmnElement="createNSFailed_EndEvent">
218         <dc:Bounds x="690" y="-3" width="36" height="36" />
219         <bpmndi:BPMNLabel>
220           <dc:Bounds x="626" y="37" width="75" height="12" />
221         </bpmndi:BPMNLabel>
222       </bpmndi:BPMNShape>
223       <bpmndi:BPMNShape id="EndEvent_0xgvlmx_di" bpmnElement="EndEvent_1gkvvpn">
224         <dc:Bounds x="1041" y="-3" width="36" height="36" />
225         <bpmndi:BPMNLabel>
226           <dc:Bounds x="1014" y="37" width="0" height="12" />
227         </bpmndi:BPMNLabel>
228       </bpmndi:BPMNShape>
229       <bpmndi:BPMNShape id="EndEvent_15pcuuc_di" bpmnElement="EndEvent_1x6k78c">
230         <dc:Bounds x="484" y="577" width="36" height="36" />
231         <bpmndi:BPMNLabel>
232           <dc:Bounds x="412" y="617" width="90" height="12" />
233         </bpmndi:BPMNLabel>
234       </bpmndi:BPMNShape>
235       <bpmndi:BPMNShape id="ScriptTask_0sxy5we_di" bpmnElement="queryJob_Task">
236         <dc:Bounds x="1009" y="271" width="100" height="80" />
237       </bpmndi:BPMNShape>
238       <bpmndi:BPMNShape id="ScriptTask_0xxyfku_di" bpmnElement="finishNSCreate_Task">
239         <dc:Bounds x="683" y="555" width="100" height="80" />
240       </bpmndi:BPMNShape>
241       <bpmndi:BPMNEdge id="SequenceFlow_0xqo13p_di" bpmnElement="SequenceFlow_0xqo13p">
242         <di:waypoint xsi:type="dc:Point" x="1059" y="351" />
243         <di:waypoint xsi:type="dc:Point" x="1059" y="570" />
244         <bpmndi:BPMNLabel>
245           <dc:Bounds x="1074" y="454.5" width="0" height="12" />
246         </bpmndi:BPMNLabel>
247       </bpmndi:BPMNEdge>
248       <bpmndi:BPMNShape id="ScriptTask_0rb5agx_di" bpmnElement="timeDelay_Task">
249         <dc:Bounds x="1162" y="406" width="100" height="80" />
250       </bpmndi:BPMNShape>
251       <bpmndi:BPMNEdge id="SequenceFlow_1gsbpxj_di" bpmnElement="SequenceFlow_1gsbpxj">
252         <di:waypoint xsi:type="dc:Point" x="1212" y="406" />
253         <di:waypoint xsi:type="dc:Point" x="1212" y="311" />
254         <di:waypoint xsi:type="dc:Point" x="1109" y="311" />
255         <bpmndi:BPMNLabel>
256           <dc:Bounds x="1227" y="352.5" width="0" height="12" />
257         </bpmndi:BPMNLabel>
258       </bpmndi:BPMNEdge>
259     </bpmndi:BPMNPlane>
260   </bpmndi:BPMNDiagram>
261 </bpmn:definitions>