aboutsummaryrefslogtreecommitdiffstats
path: root/bpmn
diff options
context:
space:
mode:
authorsubhash kumar singh <subhash.kumar.singh@huawei.com>2018-04-11 05:51:03 +0000
committersubhash kumar singh <subhash.kumar.singh@huawei.com>2018-04-11 06:52:58 +0000
commit62e75a057279e38401bb150a74dad572f3bcb2d6 (patch)
treed30f1fe4579adb66125e49ebf806de088285334e /bpmn
parenta796737b69d4206327d2c9d0fa8c083f55240959 (diff)
Add workflow for deleting sdnc resource
Add workflow for deleting sdnc resource. Change-Id: If3d7a3b8217fb2656e2a675cca4d9df7a2e12f01 Issue-ID: SO-422 Signed-off-by: subhash kumar singh <subhash.kumar.singh@huawei.com>
Diffstat (limited to 'bpmn')
-rw-r--r--bpmn/MSOInfrastructureBPMN/src/main/resources/process/DeleteSDNCNetworkResource.bpmn156
1 files changed, 156 insertions, 0 deletions
diff --git a/bpmn/MSOInfrastructureBPMN/src/main/resources/process/DeleteSDNCNetworkResource.bpmn b/bpmn/MSOInfrastructureBPMN/src/main/resources/process/DeleteSDNCNetworkResource.bpmn
new file mode 100644
index 0000000000..c730c8e2de
--- /dev/null
+++ b/bpmn/MSOInfrastructureBPMN/src/main/resources/process/DeleteSDNCNetworkResource.bpmn
@@ -0,0 +1,156 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" id="Definitions_1" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="1.11.3">
+ <bpmn:process id="DeleteSDNCNetworkResource" name="DeleteSDNCNetworkResource" isExecutable="true">
+ <bpmn:startEvent id="createNS_StartEvent" name="deleteNS_StartEvent">
+ <bpmn:outgoing>SequenceFlow_1qo2pln</bpmn:outgoing>
+ </bpmn:startEvent>
+ <bpmn:sequenceFlow id="SequenceFlow_1qo2pln" sourceRef="createNS_StartEvent" targetRef="Task_1d5rrfs" />
+ <bpmn:endEvent id="EndEvent_1x6k78c" name="Delete SDNC call end">
+ <bpmn:incoming>SequenceFlow_1ba6i0r</bpmn:incoming>
+ </bpmn:endEvent>
+ <bpmn:sequenceFlow id="SequenceFlow_092fygq" sourceRef="Task_0i59nr9" targetRef="Task_1cglzlg" />
+ <bpmn:serviceTask id="Task_0i59nr9" name="Call Custom Delete SDNC Overlay" camunda:class="org.openecomp.mso.bpmn.infrastructure.workflow.serviceTask.SdncNetworkTopologyOperationTask">
+ <bpmn:incoming>SequenceFlow_1twf9nk</bpmn:incoming>
+ <bpmn:outgoing>SequenceFlow_092fygq</bpmn:outgoing>
+ </bpmn:serviceTask>
+ <bpmn:subProcess id="SubProcess_0rd2egn" triggeredByEvent="true">
+ <bpmn:startEvent id="StartEvent_1dikunf">
+ <bpmn:outgoing>SequenceFlow_00oxyoj</bpmn:outgoing>
+ <bpmn:errorEventDefinition />
+ </bpmn:startEvent>
+ <bpmn:endEvent id="EndEvent_1bbyk46">
+ <bpmn:incoming>SequenceFlow_0k06srk</bpmn:incoming>
+ </bpmn:endEvent>
+ <bpmn:sequenceFlow id="SequenceFlow_00oxyoj" sourceRef="StartEvent_1dikunf" targetRef="Task_0kqrld2" />
+ <bpmn:sequenceFlow id="SequenceFlow_0k06srk" sourceRef="Task_0kqrld2" targetRef="EndEvent_1bbyk46" />
+ <bpmn:scriptTask id="Task_0kqrld2" name="Log / Print Unexpected Error">
+ <bpmn:incoming>SequenceFlow_00oxyoj</bpmn:incoming>
+ <bpmn:outgoing>SequenceFlow_0k06srk</bpmn:outgoing>
+ <bpmn:script><![CDATA[import org.openecomp.mso.bpmn.common.scripts.*
+ExceptionUtil ex = new ExceptionUtil()
+ex.processJavaException(execution)]]></bpmn:script>
+ </bpmn:scriptTask>
+ </bpmn:subProcess>
+ <bpmn:sequenceFlow id="SequenceFlow_1twf9nk" sourceRef="Task_1t687g1" targetRef="Task_0i59nr9" />
+ <bpmn:sequenceFlow id="SequenceFlow_1ba6i0r" sourceRef="Task_1cglzlg" targetRef="EndEvent_1x6k78c" />
+ <bpmn:scriptTask id="Task_1t687g1" name="Pre Resource Delete">
+ <bpmn:incoming>SequenceFlow_01medil</bpmn:incoming>
+ <bpmn:outgoing>SequenceFlow_1twf9nk</bpmn:outgoing>
+ <bpmn:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
+def dsdncr = new DeleteSDNCNetworkResource()
+dsdncr.preProcessSDNCDelete(execution)]]></bpmn:script>
+ </bpmn:scriptTask>
+ <bpmn:scriptTask id="Task_1cglzlg" name="Post Resource Delete">
+ <bpmn:incoming>SequenceFlow_092fygq</bpmn:incoming>
+ <bpmn:outgoing>SequenceFlow_1ba6i0r</bpmn:outgoing>
+ <bpmn:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
+def dsdncr = new DeleteSDNCNetworkResource()
+dsdncr.postProcessSDNCDelete(execution)]]></bpmn:script>
+ </bpmn:scriptTask>
+ <bpmn:sequenceFlow id="SequenceFlow_01medil" sourceRef="Task_1d5rrfs" targetRef="Task_1t687g1" />
+ <bpmn:scriptTask id="Task_1d5rrfs" name="Set RecipeParam">
+ <bpmn:incoming>SequenceFlow_1qo2pln</bpmn:incoming>
+ <bpmn:outgoing>SequenceFlow_01medil</bpmn:outgoing>
+ <bpmn:script><![CDATA[String recipeParamXsdDemo="""
+{"operationType":"GRE"}"""
+
+String recipeParamXsd=""
+execution.setVariable("recipeParamXsd", recipeParamXsd)]]></bpmn:script>
+ </bpmn:scriptTask>
+ </bpmn:process>
+ <bpmndi:BPMNDiagram id="BPMNDiagram_1">
+ <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="DeleteSDNCNetworkResource">
+ <bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="createNS_StartEvent">
+ <dc:Bounds x="-168" y="111" width="36" height="36" />
+ <bpmndi:BPMNLabel>
+ <dc:Bounds x="-193" y="147" width="88" height="25" />
+ </bpmndi:BPMNLabel>
+ </bpmndi:BPMNShape>
+ <bpmndi:BPMNEdge id="SequenceFlow_1qo2pln_di" bpmnElement="SequenceFlow_1qo2pln">
+ <di:waypoint xsi:type="dc:Point" x="-132" y="129" />
+ <di:waypoint xsi:type="dc:Point" x="-60" y="129" />
+ <bpmndi:BPMNLabel>
+ <dc:Bounds x="-141" y="108" width="90" height="12" />
+ </bpmndi:BPMNLabel>
+ </bpmndi:BPMNEdge>
+ <bpmndi:BPMNShape id="EndEvent_15pcuuc_di" bpmnElement="EndEvent_1x6k78c">
+ <dc:Bounds x="722" y="111" width="36" height="36" />
+ <bpmndi:BPMNLabel>
+ <dc:Bounds x="682" y="153" width="88" height="24" />
+ </bpmndi:BPMNLabel>
+ </bpmndi:BPMNShape>
+ <bpmndi:BPMNEdge id="SequenceFlow_092fygq_di" bpmnElement="SequenceFlow_092fygq">
+ <di:waypoint xsi:type="dc:Point" x="419" y="129" />
+ <di:waypoint xsi:type="dc:Point" x="527" y="129" />
+ <bpmndi:BPMNLabel>
+ <dc:Bounds x="428" y="107.5" width="90" height="13" />
+ </bpmndi:BPMNLabel>
+ </bpmndi:BPMNEdge>
+ <bpmndi:BPMNShape id="ServiceTask_1lqz0ta_di" bpmnElement="Task_0i59nr9">
+ <dc:Bounds x="319" y="89" width="100" height="80" />
+ </bpmndi:BPMNShape>
+ <bpmndi:BPMNShape id="SubProcess_1u3lwl3_di" bpmnElement="SubProcess_0rd2egn" isExpanded="true">
+ <dc:Bounds x="38" y="273" width="350" height="200" />
+ </bpmndi:BPMNShape>
+ <bpmndi:BPMNShape id="StartEvent_0eyldml_di" bpmnElement="StartEvent_1dikunf">
+ <dc:Bounds x="69" y="340" width="36" height="36" />
+ <bpmndi:BPMNLabel>
+ <dc:Bounds x="41" y="378" width="90" height="13" />
+ </bpmndi:BPMNLabel>
+ </bpmndi:BPMNShape>
+ <bpmndi:BPMNShape id="EndEvent_1bbyk46_di" bpmnElement="EndEvent_1bbyk46">
+ <dc:Bounds x="333" y="340" width="36" height="36" />
+ <bpmndi:BPMNLabel>
+ <dc:Bounds x="306" y="379" width="90" height="13" />
+ </bpmndi:BPMNLabel>
+ </bpmndi:BPMNShape>
+ <bpmndi:BPMNEdge id="SequenceFlow_00oxyoj_di" bpmnElement="SequenceFlow_00oxyoj">
+ <di:waypoint xsi:type="dc:Point" x="105" y="358" />
+ <di:waypoint xsi:type="dc:Point" x="165" y="358" />
+ <bpmndi:BPMNLabel>
+ <dc:Bounds x="90" y="337" width="90" height="13" />
+ </bpmndi:BPMNLabel>
+ </bpmndi:BPMNEdge>
+ <bpmndi:BPMNEdge id="SequenceFlow_0k06srk_di" bpmnElement="SequenceFlow_0k06srk">
+ <di:waypoint xsi:type="dc:Point" x="265" y="358" />
+ <di:waypoint xsi:type="dc:Point" x="333" y="358" />
+ <bpmndi:BPMNLabel>
+ <dc:Bounds x="254" y="337" width="90" height="13" />
+ </bpmndi:BPMNLabel>
+ </bpmndi:BPMNEdge>
+ <bpmndi:BPMNShape id="ScriptTask_1b3k692_di" bpmnElement="Task_0kqrld2">
+ <dc:Bounds x="165" y="318" width="100" height="80" />
+ </bpmndi:BPMNShape>
+ <bpmndi:BPMNEdge id="SequenceFlow_1twf9nk_di" bpmnElement="SequenceFlow_1twf9nk">
+ <di:waypoint xsi:type="dc:Point" x="213" y="129" />
+ <di:waypoint xsi:type="dc:Point" x="319" y="129" />
+ <bpmndi:BPMNLabel>
+ <dc:Bounds x="266" y="108" width="0" height="12" />
+ </bpmndi:BPMNLabel>
+ </bpmndi:BPMNEdge>
+ <bpmndi:BPMNEdge id="SequenceFlow_1ba6i0r_di" bpmnElement="SequenceFlow_1ba6i0r">
+ <di:waypoint xsi:type="dc:Point" x="627" y="129" />
+ <di:waypoint xsi:type="dc:Point" x="722" y="129" />
+ <bpmndi:BPMNLabel>
+ <dc:Bounds x="674.5" y="108" width="0" height="12" />
+ </bpmndi:BPMNLabel>
+ </bpmndi:BPMNEdge>
+ <bpmndi:BPMNShape id="ScriptTask_1t116cs_di" bpmnElement="Task_1t687g1">
+ <dc:Bounds x="113" y="89" width="100" height="80" />
+ </bpmndi:BPMNShape>
+ <bpmndi:BPMNShape id="ScriptTask_18zliw7_di" bpmnElement="Task_1cglzlg">
+ <dc:Bounds x="527" y="89" width="100" height="80" />
+ </bpmndi:BPMNShape>
+ <bpmndi:BPMNEdge id="SequenceFlow_01medil_di" bpmnElement="SequenceFlow_01medil">
+ <di:waypoint xsi:type="dc:Point" x="40" y="129" />
+ <di:waypoint xsi:type="dc:Point" x="113" y="129" />
+ <bpmndi:BPMNLabel>
+ <dc:Bounds x="76.5" y="107.5" width="0" height="13" />
+ </bpmndi:BPMNLabel>
+ </bpmndi:BPMNEdge>
+ <bpmndi:BPMNShape id="ScriptTask_0f9etr5_di" bpmnElement="Task_1d5rrfs">
+ <dc:Bounds x="-60" y="89" width="100" height="80" />
+ </bpmndi:BPMNShape>
+ </bpmndi:BPMNPlane>
+ </bpmndi:BPMNDiagram>
+</bpmn:definitions>