blob: 237016535466a8c522b88172844f6d2adf5b6025 [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">
c001491072ff62a62018-04-20 17:02:24 +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">
c001491072ff62a62018-04-20 17:02:24 +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>
c001491072ff62a62018-04-20 17:02:24 +080065 <bpmn:sequenceFlow id="SequenceFlow_0cq2q6g" sourceRef="finishNSCreate_Task" targetRef="ScriptTask_1890l78" />
c00149107b7659482017-09-21 16:23:03 +080066 <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">
c001491072ff62a62018-04-20 17:02:24 +080073 <bpmn:incoming>SequenceFlow_1lwqmo9</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>
c001491072ff62a62018-04-20 17:02:24 +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" />
c001491072ff62a62018-04-20 17:02:24 +080099 <bpmn:scriptTask id="ScriptTask_1890l78" name="Send Sync Ack Response" scriptFormat="groovy">
100 <bpmn:incoming>SequenceFlow_0cq2q6g</bpmn:incoming>
101 <bpmn:outgoing>SequenceFlow_1lwqmo9</bpmn:outgoing>
102 <bpmn:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
103def csi = new CreateVFCNSResource()
104csi.sendSyncResponse(execution)]]></bpmn:script>
105 </bpmn:scriptTask>
106 <bpmn:sequenceFlow id="SequenceFlow_1lwqmo9" sourceRef="ScriptTask_1890l78" targetRef="EndEvent_1x6k78c" />
c0014910716434ee2017-09-20 17:52:35 +0800107 </bpmn:process>
108 <bpmndi:BPMNDiagram id="BPMNDiagram_1">
c0014910755df4eb2018-03-13 14:43:50 +0800109 <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="CreateVFCNSResource">
c00149107b7659482017-09-21 16:23:03 +0800110 <bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="createNS_StartEvent">
c0014910716434ee2017-09-20 17:52:35 +0800111 <dc:Bounds x="175" y="111" width="36" height="36" />
112 <bpmndi:BPMNLabel>
c00149107b7659482017-09-21 16:23:03 +0800113 <dc:Bounds x="152" y="147" width="83" height="24" />
c0014910716434ee2017-09-20 17:52:35 +0800114 </bpmndi:BPMNLabel>
115 </bpmndi:BPMNShape>
116 <bpmndi:BPMNEdge id="SequenceFlow_1qo2pln_di" bpmnElement="SequenceFlow_1qo2pln">
117 <di:waypoint xsi:type="dc:Point" x="211" y="129" />
118 <di:waypoint xsi:type="dc:Point" x="251" y="129" />
119 <di:waypoint xsi:type="dc:Point" x="251" y="129" />
120 <di:waypoint xsi:type="dc:Point" x="293" y="129" />
121 <bpmndi:BPMNLabel>
122 <dc:Bounds x="266" y="123" width="0" height="12" />
123 </bpmndi:BPMNLabel>
124 </bpmndi:BPMNEdge>
125 <bpmndi:BPMNEdge id="SequenceFlow_0khtova_di" bpmnElement="SequenceFlow_0khtova">
126 <di:waypoint xsi:type="dc:Point" x="393" y="129" />
127 <di:waypoint xsi:type="dc:Point" x="479" y="129" />
128 <bpmndi:BPMNLabel>
129 <dc:Bounds x="436" y="108" width="0" height="12" />
130 </bpmndi:BPMNLabel>
131 </bpmndi:BPMNEdge>
132 <bpmndi:BPMNEdge id="SequenceFlow_1uiz85h_di" bpmnElement="SequenceFlow_1uiz85h">
133 <di:waypoint xsi:type="dc:Point" x="579" y="129" />
134 <di:waypoint xsi:type="dc:Point" x="683" y="129" />
135 <bpmndi:BPMNLabel>
136 <dc:Bounds x="631" y="108" width="0" height="12" />
137 </bpmndi:BPMNLabel>
138 </bpmndi:BPMNEdge>
139 <bpmndi:BPMNShape id="ScriptTask_1dw39hg_di" bpmnElement="Task_09nzhwk">
140 <dc:Bounds x="479" y="89" width="100" height="80" />
141 </bpmndi:BPMNShape>
c00149107b7659482017-09-21 16:23:03 +0800142 <bpmndi:BPMNShape id="ScriptTask_03j6ogo_di" bpmnElement="PreprocessIncomingRequest_task">
c0014910716434ee2017-09-20 17:52:35 +0800143 <dc:Bounds x="293" y="89" width="100" height="80" />
144 </bpmndi:BPMNShape>
c00149107b7659482017-09-21 16:23:03 +0800145 <bpmndi:BPMNShape id="ScriptTask_1qmmew8_di" bpmnElement="instantiate_NSTask">
c0014910716434ee2017-09-20 17:52:35 +0800146 <dc:Bounds x="839" y="89" width="100" height="80" />
147 </bpmndi:BPMNShape>
148 <bpmndi:BPMNShape id="ExclusiveGateway_0zfksms_di" bpmnElement="ExclusiveGateway_0zfksms" isMarkerVisible="true">
149 <dc:Bounds x="683" y="104" width="50" height="50" />
150 <bpmndi:BPMNLabel>
c00149107b7659482017-09-21 16:23:03 +0800151 <dc:Bounds x="685" y="158" width="52" height="24" />
c0014910716434ee2017-09-20 17:52:35 +0800152 </bpmndi:BPMNLabel>
153 </bpmndi:BPMNShape>
c00149107b7659482017-09-21 16:23:03 +0800154 <bpmndi:BPMNEdge id="SequenceFlow_1rt03zl_di" bpmnElement="createNSSuccess_SequenceFlow">
c0014910716434ee2017-09-20 17:52:35 +0800155 <di:waypoint xsi:type="dc:Point" x="733" y="129" />
156 <di:waypoint xsi:type="dc:Point" x="839" y="129" />
157 <bpmndi:BPMNLabel>
158 <dc:Bounds x="777" y="108" width="19" height="12" />
159 </bpmndi:BPMNLabel>
160 </bpmndi:BPMNEdge>
c00149107b7659482017-09-21 16:23:03 +0800161 <bpmndi:BPMNEdge id="SequenceFlow_0df541u_di" bpmnElement="createNSFailed_SequenceFlow">
c0014910716434ee2017-09-20 17:52:35 +0800162 <di:waypoint xsi:type="dc:Point" x="708" y="104" />
163 <di:waypoint xsi:type="dc:Point" x="708" y="33" />
164 <bpmndi:BPMNLabel>
165 <dc:Bounds x="717" y="63" width="12" height="12" />
166 </bpmndi:BPMNLabel>
167 </bpmndi:BPMNEdge>
168 <bpmndi:BPMNShape id="ExclusiveGateway_1is7zys_di" bpmnElement="ExclusiveGateway_1is7zys" isMarkerVisible="true">
169 <dc:Bounds x="1034" y="105" width="50" height="50" />
170 <bpmndi:BPMNLabel>
c00149107b7659482017-09-21 16:23:03 +0800171 <dc:Bounds x="1029" y="159" width="69" height="24" />
c0014910716434ee2017-09-20 17:52:35 +0800172 </bpmndi:BPMNLabel>
173 </bpmndi:BPMNShape>
174 <bpmndi:BPMNEdge id="SequenceFlow_1ywe21t_di" bpmnElement="SequenceFlow_1ywe21t">
175 <di:waypoint xsi:type="dc:Point" x="939" y="129" />
176 <di:waypoint xsi:type="dc:Point" x="1034" y="130" />
177 <bpmndi:BPMNLabel>
178 <dc:Bounds x="986.5" y="108.5" width="0" height="12" />
179 </bpmndi:BPMNLabel>
180 </bpmndi:BPMNEdge>
c00149107b7659482017-09-21 16:23:03 +0800181 <bpmndi:BPMNEdge id="SequenceFlow_0j7xo94_di" bpmnElement="instantiateFailed_SequenceFlow">
c0014910716434ee2017-09-20 17:52:35 +0800182 <di:waypoint xsi:type="dc:Point" x="1059" y="105" />
183 <di:waypoint xsi:type="dc:Point" x="1059" y="33" />
184 <bpmndi:BPMNLabel>
185 <dc:Bounds x="1068" y="63" width="12" height="12" />
186 </bpmndi:BPMNLabel>
187 </bpmndi:BPMNEdge>
c00149107b7659482017-09-21 16:23:03 +0800188 <bpmndi:BPMNEdge id="SequenceFlow_1ui2n9l_di" bpmnElement="instantiateSuccess_SequenceFlow">
c0014910716434ee2017-09-20 17:52:35 +0800189 <di:waypoint xsi:type="dc:Point" x="1059" y="155" />
190 <di:waypoint xsi:type="dc:Point" x="1059" y="271" />
191 <bpmndi:BPMNLabel>
c00149107b7659482017-09-21 16:23:03 +0800192 <dc:Bounds x="1066" y="207" width="19" height="12" />
c0014910716434ee2017-09-20 17:52:35 +0800193 </bpmndi:BPMNLabel>
194 </bpmndi:BPMNEdge>
195 <bpmndi:BPMNShape id="ExclusiveGateway_15492gl_di" bpmnElement="ExclusiveGateway_15492gl" isMarkerVisible="true">
196 <dc:Bounds x="1034" y="570" width="50" height="50" />
197 <bpmndi:BPMNLabel>
198 <dc:Bounds x="1038" y="624" width="50" height="24" />
199 </bpmndi:BPMNLabel>
200 </bpmndi:BPMNShape>
c00149107b7659482017-09-21 16:23:03 +0800201 <bpmndi:BPMNEdge id="SequenceFlow_0hftgi6_di" bpmnElement="operationFinished_SequenceFlow">
c0014910716434ee2017-09-20 17:52:35 +0800202 <di:waypoint xsi:type="dc:Point" x="1034" y="595" />
c001491072ff62a62018-04-20 17:02:24 +0800203 <di:waypoint xsi:type="dc:Point" x="902" y="595" />
c0014910716434ee2017-09-20 17:52:35 +0800204 <bpmndi:BPMNLabel>
c001491072ff62a62018-04-20 17:02:24 +0800205 <dc:Bounds x="929.1428571428571" y="574" width="18" height="14" />
c0014910716434ee2017-09-20 17:52:35 +0800206 </bpmndi:BPMNLabel>
207 </bpmndi:BPMNEdge>
c00149107b7659482017-09-21 16:23:03 +0800208 <bpmndi:BPMNEdge id="SequenceFlow_0omec46_di" bpmnElement="operationProcessing_SequenceFlow">
209 <di:waypoint xsi:type="dc:Point" x="1084" y="595" />
210 <di:waypoint xsi:type="dc:Point" x="1212" y="595" />
211 <di:waypoint xsi:type="dc:Point" x="1212" y="486" />
c0014910716434ee2017-09-20 17:52:35 +0800212 <bpmndi:BPMNLabel>
c00149107b7659482017-09-21 16:23:03 +0800213 <dc:Bounds x="1131" y="607" width="12" height="12" />
c0014910716434ee2017-09-20 17:52:35 +0800214 </bpmndi:BPMNLabel>
215 </bpmndi:BPMNEdge>
c0014910716434ee2017-09-20 17:52:35 +0800216 <bpmndi:BPMNEdge id="SequenceFlow_0cq2q6g_di" bpmnElement="SequenceFlow_0cq2q6g">
c001491072ff62a62018-04-20 17:02:24 +0800217 <di:waypoint xsi:type="dc:Point" x="802" y="595" />
218 <di:waypoint xsi:type="dc:Point" x="690" y="595" />
c0014910716434ee2017-09-20 17:52:35 +0800219 <bpmndi:BPMNLabel>
c001491072ff62a62018-04-20 17:02:24 +0800220 <dc:Bounds x="701" y="574" width="90" height="12" />
c0014910716434ee2017-09-20 17:52:35 +0800221 </bpmndi:BPMNLabel>
222 </bpmndi:BPMNEdge>
c00149107b7659482017-09-21 16:23:03 +0800223 <bpmndi:BPMNShape id="EndEvent_1ido9wi_di" bpmnElement="createNSFailed_EndEvent">
Seshu-Kumar-Mb23cf7b2017-09-20 20:14:28 +0800224 <dc:Bounds x="690" y="-3" width="36" height="36" />
225 <bpmndi:BPMNLabel>
c00149107b7659482017-09-21 16:23:03 +0800226 <dc:Bounds x="626" y="37" width="75" height="12" />
Seshu-Kumar-Mb23cf7b2017-09-20 20:14:28 +0800227 </bpmndi:BPMNLabel>
228 </bpmndi:BPMNShape>
229 <bpmndi:BPMNShape id="EndEvent_0xgvlmx_di" bpmnElement="EndEvent_1gkvvpn">
230 <dc:Bounds x="1041" y="-3" width="36" height="36" />
231 <bpmndi:BPMNLabel>
232 <dc:Bounds x="1014" y="37" width="0" height="12" />
233 </bpmndi:BPMNLabel>
234 </bpmndi:BPMNShape>
Seshu-Kumar-Mb23cf7b2017-09-20 20:14:28 +0800235 <bpmndi:BPMNShape id="EndEvent_15pcuuc_di" bpmnElement="EndEvent_1x6k78c">
c00149107b7659482017-09-21 16:23:03 +0800236 <dc:Bounds x="484" y="577" width="36" height="36" />
Seshu-Kumar-Mb23cf7b2017-09-20 20:14:28 +0800237 <bpmndi:BPMNLabel>
c00149107b7659482017-09-21 16:23:03 +0800238 <dc:Bounds x="412" y="617" width="90" height="12" />
Seshu-Kumar-Mb23cf7b2017-09-20 20:14:28 +0800239 </bpmndi:BPMNLabel>
240 </bpmndi:BPMNShape>
c00149107b7659482017-09-21 16:23:03 +0800241 <bpmndi:BPMNShape id="ScriptTask_0sxy5we_di" bpmnElement="queryJob_Task">
Seshu-Kumar-Mb23cf7b2017-09-20 20:14:28 +0800242 <dc:Bounds x="1009" y="271" width="100" height="80" />
243 </bpmndi:BPMNShape>
c00149107b7659482017-09-21 16:23:03 +0800244 <bpmndi:BPMNShape id="ScriptTask_0xxyfku_di" bpmnElement="finishNSCreate_Task">
c001491072ff62a62018-04-20 17:02:24 +0800245 <dc:Bounds x="802" y="555" width="100" height="80" />
Seshu-Kumar-Mb23cf7b2017-09-20 20:14:28 +0800246 </bpmndi:BPMNShape>
c00149107b7659482017-09-21 16:23:03 +0800247 <bpmndi:BPMNEdge id="SequenceFlow_0xqo13p_di" bpmnElement="SequenceFlow_0xqo13p">
248 <di:waypoint xsi:type="dc:Point" x="1059" y="351" />
249 <di:waypoint xsi:type="dc:Point" x="1059" y="570" />
250 <bpmndi:BPMNLabel>
251 <dc:Bounds x="1074" y="454.5" width="0" height="12" />
252 </bpmndi:BPMNLabel>
253 </bpmndi:BPMNEdge>
254 <bpmndi:BPMNShape id="ScriptTask_0rb5agx_di" bpmnElement="timeDelay_Task">
255 <dc:Bounds x="1162" y="406" width="100" height="80" />
256 </bpmndi:BPMNShape>
257 <bpmndi:BPMNEdge id="SequenceFlow_1gsbpxj_di" bpmnElement="SequenceFlow_1gsbpxj">
258 <di:waypoint xsi:type="dc:Point" x="1212" y="406" />
259 <di:waypoint xsi:type="dc:Point" x="1212" y="311" />
260 <di:waypoint xsi:type="dc:Point" x="1109" y="311" />
261 <bpmndi:BPMNLabel>
262 <dc:Bounds x="1227" y="352.5" width="0" height="12" />
263 </bpmndi:BPMNLabel>
264 </bpmndi:BPMNEdge>
c001491072ff62a62018-04-20 17:02:24 +0800265 <bpmndi:BPMNShape id="ScriptTask_1890l78_di" bpmnElement="ScriptTask_1890l78">
266 <dc:Bounds x="590" y="555" width="100" height="80" />
267 </bpmndi:BPMNShape>
268 <bpmndi:BPMNEdge id="SequenceFlow_1lwqmo9_di" bpmnElement="SequenceFlow_1lwqmo9">
269 <di:waypoint xsi:type="dc:Point" x="590" y="595" />
270 <di:waypoint xsi:type="dc:Point" x="520" y="595" />
271 <bpmndi:BPMNLabel>
272 <dc:Bounds x="555" y="573" width="0" height="14" />
273 </bpmndi:BPMNLabel>
274 </bpmndi:BPMNEdge>
c0014910716434ee2017-09-20 17:52:35 +0800275 </bpmndi:BPMNPlane>
276 </bpmndi:BPMNDiagram>
Rob Daugherty38f72072018-03-14 02:07:32 -0400277</bpmn:definitions>