blob: e6d4af3a6beedff73c76f27d0a8e6f787137ce94 [file] [log] [blame]
c0014910716434ee2017-09-20 17:52:35 +08001<?xml version="1.0" encoding="UTF-8"?>
c00149107b7659482017-09-21 16:23:03 +08002<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">
c00149107bc0111b2018-03-12 16:35:42 +08003 <bpmn:process id="CreateVFCNSResource" name="CreateVFCNSResource" isExecutable="true">
c00149107b7659482017-09-21 16:23:03 +08004 <bpmn:startEvent id="createNS_StartEvent" name="createNS_StartEvent">
c0014910716434ee2017-09-20 17:52:35 +08005 <bpmn:outgoing>SequenceFlow_1qo2pln</bpmn:outgoing>
6 </bpmn:startEvent>
c00149107b7659482017-09-21 16:23:03 +08007 <bpmn:sequenceFlow id="SequenceFlow_1qo2pln" sourceRef="createNS_StartEvent" targetRef="PreprocessIncomingRequest_task" />
8 <bpmn:sequenceFlow id="SequenceFlow_0khtova" sourceRef="PreprocessIncomingRequest_task" targetRef="Task_09nzhwk" />
c0014910716434ee2017-09-20 17:52:35 +08009 <bpmn:sequenceFlow id="SequenceFlow_1uiz85h" sourceRef="Task_09nzhwk" targetRef="ExclusiveGateway_0zfksms" />
c00149107b7659482017-09-21 16:23:03 +080010 <bpmn:scriptTask id="Task_09nzhwk" name="Create Network Service" scriptFormat="groovy">
c0014910716434ee2017-09-20 17:52:35 +080011 <bpmn:incoming>SequenceFlow_0khtova</bpmn:incoming>
12 <bpmn:outgoing>SequenceFlow_1uiz85h</bpmn:outgoing>
Seshu-Kumar-Mb23cf7b2017-09-20 20:14:28 +080013 <bpmn:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
c0014910755df4eb2018-03-13 14:43:50 +080014def dcsi = new CreateVFCNSResource()
c00149107b7659482017-09-21 16:23:03 +080015dcsi.createNetworkService(execution)]]></bpmn:script>
c0014910716434ee2017-09-20 17:52:35 +080016 </bpmn:scriptTask>
c00149107b7659482017-09-21 16:23:03 +080017 <bpmn:scriptTask id="PreprocessIncomingRequest_task" name="Preprocess Incoming Request" scriptFormat="groovy">
c0014910716434ee2017-09-20 17:52:35 +080018 <bpmn:incoming>SequenceFlow_1qo2pln</bpmn:incoming>
19 <bpmn:outgoing>SequenceFlow_0khtova</bpmn:outgoing>
Seshu-Kumar-Mb23cf7b2017-09-20 20:14:28 +080020 <bpmn:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
c0014910755df4eb2018-03-13 14:43:50 +080021def dcsi = new CreateVFCNSResource()
c00149107b7659482017-09-21 16:23:03 +080022dcsi.preProcessRequest(execution)]]></bpmn:script>
c0014910716434ee2017-09-20 17:52:35 +080023 </bpmn:scriptTask>
c00149107b7659482017-09-21 16:23:03 +080024 <bpmn:scriptTask id="instantiate_NSTask" name="Instantiate Network Service" scriptFormat="groovy">
25 <bpmn:incoming>createNSSuccess_SequenceFlow</bpmn:incoming>
c0014910716434ee2017-09-20 17:52:35 +080026 <bpmn:outgoing>SequenceFlow_1ywe21t</bpmn:outgoing>
Seshu-Kumar-Mb23cf7b2017-09-20 20:14:28 +080027 <bpmn:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
c0014910755df4eb2018-03-13 14:43:50 +080028def dcsi = new CreateVFCNSResource()
c00149107b7659482017-09-21 16:23:03 +080029dcsi.instantiateNetworkService(execution)]]></bpmn:script>
c0014910716434ee2017-09-20 17:52:35 +080030 </bpmn:scriptTask>
c00149107b7659482017-09-21 16:23:03 +080031 <bpmn:exclusiveGateway id="ExclusiveGateway_0zfksms" name="Create NS Success?">
c0014910716434ee2017-09-20 17:52:35 +080032 <bpmn:incoming>SequenceFlow_1uiz85h</bpmn:incoming>
c00149107b7659482017-09-21 16:23:03 +080033 <bpmn:outgoing>createNSSuccess_SequenceFlow</bpmn:outgoing>
34 <bpmn:outgoing>createNSFailed_SequenceFlow</bpmn:outgoing>
c0014910716434ee2017-09-20 17:52:35 +080035 </bpmn:exclusiveGateway>
c00149107b7659482017-09-21 16:23:03 +080036 <bpmn:sequenceFlow id="createNSSuccess_SequenceFlow" name="yes" sourceRef="ExclusiveGateway_0zfksms" targetRef="instantiate_NSTask">
c001491071fd78f92017-10-26 18:00:07 +080037 <bpmn:conditionExpression xsi:type="bpmn:tFormalExpression"><![CDATA[#{(execution.getVariable("nsInstanceId" ) != null && execution.getVariable("nsInstanceId" ) != "" )}]]></bpmn:conditionExpression>
c0014910716434ee2017-09-20 17:52:35 +080038 </bpmn:sequenceFlow>
c00149107b7659482017-09-21 16:23:03 +080039 <bpmn:sequenceFlow id="createNSFailed_SequenceFlow" name="no" sourceRef="ExclusiveGateway_0zfksms" targetRef="createNSFailed_EndEvent">
c001491071fd78f92017-10-26 18:00:07 +080040 <bpmn:conditionExpression xsi:type="bpmn:tFormalExpression"><![CDATA[#{(execution.getVariable("nsInstanceId" ) == null || execution.getVariable("nsInstanceId" ) == "" )}]]></bpmn:conditionExpression>
c00149107b7659482017-09-21 16:23:03 +080041 </bpmn:sequenceFlow>
42 <bpmn:exclusiveGateway id="ExclusiveGateway_1is7zys" name="Instantiate NS Success?">
c0014910716434ee2017-09-20 17:52:35 +080043 <bpmn:incoming>SequenceFlow_1ywe21t</bpmn:incoming>
c00149107b7659482017-09-21 16:23:03 +080044 <bpmn:outgoing>instantiateFailed_SequenceFlow</bpmn:outgoing>
45 <bpmn:outgoing>instantiateSuccess_SequenceFlow</bpmn:outgoing>
c0014910716434ee2017-09-20 17:52:35 +080046 </bpmn:exclusiveGateway>
c00149107b7659482017-09-21 16:23:03 +080047 <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>
c0014910716434ee2017-09-20 17:52:35 +080058 </bpmn:exclusiveGateway>
c00149107b7659482017-09-21 16:23:03 +080059 <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>
Seshu-Kumar-Mb23cf7b2017-09-20 20:14:28 +080068 </bpmn:endEvent>
69 <bpmn:endEvent id="EndEvent_1gkvvpn">
c00149107b7659482017-09-21 16:23:03 +080070 <bpmn:incoming>instantiateFailed_SequenceFlow</bpmn:incoming>
Seshu-Kumar-Mb23cf7b2017-09-20 20:14:28 +080071 </bpmn:endEvent>
c0014910716434ee2017-09-20 17:52:35 +080072 <bpmn:endEvent id="EndEvent_1x6k78c">
73 <bpmn:incoming>SequenceFlow_0cq2q6g</bpmn:incoming>
c0014910716434ee2017-09-20 17:52:35 +080074 </bpmn:endEvent>
c00149107b7659482017-09-21 16:23:03 +080075 <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>
Seshu-Kumar-Mb23cf7b2017-09-20 20:14:28 +080079 <bpmn:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
c0014910755df4eb2018-03-13 14:43:50 +080080def dcsi = new CreateVFCNSResource()
c00149107b7659482017-09-21 16:23:03 +080081dcsi.queryNSProgress(execution)]]></bpmn:script>
Seshu-Kumar-Mb23cf7b2017-09-20 20:14:28 +080082 </bpmn:scriptTask>
c00149107fca7faf2017-10-27 10:44:46 +080083 <bpmn:scriptTask id="finishNSCreate_Task" name="Add NS RelationShip" scriptFormat="groovy">
c00149107b7659482017-09-21 16:23:03 +080084 <bpmn:incoming>operationFinished_SequenceFlow</bpmn:incoming>
Seshu-Kumar-Mb23cf7b2017-09-20 20:14:28 +080085 <bpmn:outgoing>SequenceFlow_0cq2q6g</bpmn:outgoing>
86 <bpmn:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
c0014910755df4eb2018-03-13 14:43:50 +080087def dcsi = new CreateVFCNSResource()
c00149107fca7faf2017-10-27 10:44:46 +080088dcsi.addNSRelationship(execution)]]></bpmn:script>
Seshu-Kumar-Mb23cf7b2017-09-20 20:14:28 +080089 </bpmn:scriptTask>
c00149107b7659482017-09-21 16:23:03 +080090 <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.*
c0014910755df4eb2018-03-13 14:43:50 +080095def dcsi = new CreateVFCNSResource()
c00149107b7659482017-09-21 16:23:03 +080096dcsi.timeDelay(execution)]]></bpmn:script>
97 </bpmn:scriptTask>
98 <bpmn:sequenceFlow id="SequenceFlow_1gsbpxj" sourceRef="timeDelay_Task" targetRef="queryJob_Task" />
c0014910716434ee2017-09-20 17:52:35 +080099 </bpmn:process>
100 <bpmndi:BPMNDiagram id="BPMNDiagram_1">
c0014910755df4eb2018-03-13 14:43:50 +0800101 <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="CreateVFCNSResource">
c00149107b7659482017-09-21 16:23:03 +0800102 <bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="createNS_StartEvent">
c0014910716434ee2017-09-20 17:52:35 +0800103 <dc:Bounds x="175" y="111" width="36" height="36" />
104 <bpmndi:BPMNLabel>
c00149107b7659482017-09-21 16:23:03 +0800105 <dc:Bounds x="152" y="147" width="83" height="24" />
c0014910716434ee2017-09-20 17:52:35 +0800106 </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>
c00149107b7659482017-09-21 16:23:03 +0800134 <bpmndi:BPMNShape id="ScriptTask_03j6ogo_di" bpmnElement="PreprocessIncomingRequest_task">
c0014910716434ee2017-09-20 17:52:35 +0800135 <dc:Bounds x="293" y="89" width="100" height="80" />
136 </bpmndi:BPMNShape>
c00149107b7659482017-09-21 16:23:03 +0800137 <bpmndi:BPMNShape id="ScriptTask_1qmmew8_di" bpmnElement="instantiate_NSTask">
c0014910716434ee2017-09-20 17:52:35 +0800138 <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>
c00149107b7659482017-09-21 16:23:03 +0800143 <dc:Bounds x="685" y="158" width="52" height="24" />
c0014910716434ee2017-09-20 17:52:35 +0800144 </bpmndi:BPMNLabel>
145 </bpmndi:BPMNShape>
c00149107b7659482017-09-21 16:23:03 +0800146 <bpmndi:BPMNEdge id="SequenceFlow_1rt03zl_di" bpmnElement="createNSSuccess_SequenceFlow">
c0014910716434ee2017-09-20 17:52:35 +0800147 <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>
c00149107b7659482017-09-21 16:23:03 +0800153 <bpmndi:BPMNEdge id="SequenceFlow_0df541u_di" bpmnElement="createNSFailed_SequenceFlow">
c0014910716434ee2017-09-20 17:52:35 +0800154 <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>
c00149107b7659482017-09-21 16:23:03 +0800163 <dc:Bounds x="1029" y="159" width="69" height="24" />
c0014910716434ee2017-09-20 17:52:35 +0800164 </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>
c00149107b7659482017-09-21 16:23:03 +0800173 <bpmndi:BPMNEdge id="SequenceFlow_0j7xo94_di" bpmnElement="instantiateFailed_SequenceFlow">
c0014910716434ee2017-09-20 17:52:35 +0800174 <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>
c00149107b7659482017-09-21 16:23:03 +0800180 <bpmndi:BPMNEdge id="SequenceFlow_1ui2n9l_di" bpmnElement="instantiateSuccess_SequenceFlow">
c0014910716434ee2017-09-20 17:52:35 +0800181 <di:waypoint xsi:type="dc:Point" x="1059" y="155" />
182 <di:waypoint xsi:type="dc:Point" x="1059" y="271" />
183 <bpmndi:BPMNLabel>
c00149107b7659482017-09-21 16:23:03 +0800184 <dc:Bounds x="1066" y="207" width="19" height="12" />
c0014910716434ee2017-09-20 17:52:35 +0800185 </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>
c00149107b7659482017-09-21 16:23:03 +0800193 <bpmndi:BPMNEdge id="SequenceFlow_0hftgi6_di" bpmnElement="operationFinished_SequenceFlow">
c0014910716434ee2017-09-20 17:52:35 +0800194 <di:waypoint xsi:type="dc:Point" x="1034" y="595" />
c00149107b7659482017-09-21 16:23:03 +0800195 <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" />
c0014910716434ee2017-09-20 17:52:35 +0800198 <bpmndi:BPMNLabel>
c00149107b7659482017-09-21 16:23:03 +0800199 <dc:Bounds x="963" y="574" width="19" height="12" />
c0014910716434ee2017-09-20 17:52:35 +0800200 </bpmndi:BPMNLabel>
201 </bpmndi:BPMNEdge>
c00149107b7659482017-09-21 16:23:03 +0800202 <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" />
c0014910716434ee2017-09-20 17:52:35 +0800206 <bpmndi:BPMNLabel>
c00149107b7659482017-09-21 16:23:03 +0800207 <dc:Bounds x="1131" y="607" width="12" height="12" />
c0014910716434ee2017-09-20 17:52:35 +0800208 </bpmndi:BPMNLabel>
209 </bpmndi:BPMNEdge>
c0014910716434ee2017-09-20 17:52:35 +0800210 <bpmndi:BPMNEdge id="SequenceFlow_0cq2q6g_di" bpmnElement="SequenceFlow_0cq2q6g">
c00149107b7659482017-09-21 16:23:03 +0800211 <di:waypoint xsi:type="dc:Point" x="683" y="595" />
212 <di:waypoint xsi:type="dc:Point" x="520" y="595" />
c0014910716434ee2017-09-20 17:52:35 +0800213 <bpmndi:BPMNLabel>
c00149107b7659482017-09-21 16:23:03 +0800214 <dc:Bounds x="556.5" y="574" width="90" height="12" />
c0014910716434ee2017-09-20 17:52:35 +0800215 </bpmndi:BPMNLabel>
216 </bpmndi:BPMNEdge>
c00149107b7659482017-09-21 16:23:03 +0800217 <bpmndi:BPMNShape id="EndEvent_1ido9wi_di" bpmnElement="createNSFailed_EndEvent">
Seshu-Kumar-Mb23cf7b2017-09-20 20:14:28 +0800218 <dc:Bounds x="690" y="-3" width="36" height="36" />
219 <bpmndi:BPMNLabel>
c00149107b7659482017-09-21 16:23:03 +0800220 <dc:Bounds x="626" y="37" width="75" height="12" />
Seshu-Kumar-Mb23cf7b2017-09-20 20:14:28 +0800221 </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>
Seshu-Kumar-Mb23cf7b2017-09-20 20:14:28 +0800229 <bpmndi:BPMNShape id="EndEvent_15pcuuc_di" bpmnElement="EndEvent_1x6k78c">
c00149107b7659482017-09-21 16:23:03 +0800230 <dc:Bounds x="484" y="577" width="36" height="36" />
Seshu-Kumar-Mb23cf7b2017-09-20 20:14:28 +0800231 <bpmndi:BPMNLabel>
c00149107b7659482017-09-21 16:23:03 +0800232 <dc:Bounds x="412" y="617" width="90" height="12" />
Seshu-Kumar-Mb23cf7b2017-09-20 20:14:28 +0800233 </bpmndi:BPMNLabel>
234 </bpmndi:BPMNShape>
c00149107b7659482017-09-21 16:23:03 +0800235 <bpmndi:BPMNShape id="ScriptTask_0sxy5we_di" bpmnElement="queryJob_Task">
Seshu-Kumar-Mb23cf7b2017-09-20 20:14:28 +0800236 <dc:Bounds x="1009" y="271" width="100" height="80" />
237 </bpmndi:BPMNShape>
c00149107b7659482017-09-21 16:23:03 +0800238 <bpmndi:BPMNShape id="ScriptTask_0xxyfku_di" bpmnElement="finishNSCreate_Task">
239 <dc:Bounds x="683" y="555" width="100" height="80" />
Seshu-Kumar-Mb23cf7b2017-09-20 20:14:28 +0800240 </bpmndi:BPMNShape>
c00149107b7659482017-09-21 16:23:03 +0800241 <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>
c0014910716434ee2017-09-20 17:52:35 +0800259 </bpmndi:BPMNPlane>
260 </bpmndi:BPMNDiagram>
c00149107d3ccd3c2018-03-12 11:58:22 +0800261</bpmn:definitions>