blob: b20a26a4c380c0f6895d60e71be3c6ad2bae5226 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<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:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL BPMN20.xsd" id="_oBLSkHqWEea26OhQB97uCQ" exporter="camunda modeler" exporterVersion="2.7.0" targetNamespace="http://activiti.org/bpmn">
<bpmn2:process id="GenericDeleteVnf" name="GenericDeleteVnf" isExecutable="true">
<bpmn2:startEvent id="StartEvent_1">
<bpmn2:outgoing>SequenceFlow_1</bpmn2:outgoing>
</bpmn2:startEvent>
<bpmn2:scriptTask id="initialization" name="Initialization" scriptFormat="groovy">
<bpmn2:incoming>SequenceFlow_1</bpmn2:incoming>
<bpmn2:outgoing>SequenceFlow_9</bpmn2:outgoing>
<bpmn2:script><![CDATA[import com.att.bpm.scripts.*
GenericDeleteVnf deleteVnf= new GenericDeleteVnf()
deleteVnf.preProcessRequest(execution)]]></bpmn2:script>
</bpmn2:scriptTask>
<bpmn2:sequenceFlow id="SequenceFlow_1" name="" sourceRef="StartEvent_1" targetRef="initialization"/>
<bpmn2:sequenceFlow id="SequenceFlow_9" name="" sourceRef="initialization" targetRef="resourceVersionCheck"/>
<bpmn2:exclusiveGateway id="resourceVersionCheck" name="Resource Version Provided?" default="resourceVersionProvided">
<bpmn2:incoming>SequenceFlow_9</bpmn2:incoming>
<bpmn2:outgoing>resourceVariableNotProvided</bpmn2:outgoing>
<bpmn2:outgoing>resourceVersionProvided</bpmn2:outgoing>
</bpmn2:exclusiveGateway>
<bpmn2:sequenceFlow id="resourceVariableNotProvided" name="No" sourceRef="resourceVersionCheck" targetRef="queryForResourceVersion">
<bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("GENDV_resourceVersionProvided") == false}]]></bpmn2:conditionExpression>
</bpmn2:sequenceFlow>
<bpmn2:sequenceFlow id="resourceVersionProvided" name="Yes" sourceRef="resourceVersionCheck" targetRef="ExclusiveGateway_2"/>
<bpmn2:subProcess id="bpmnExceptionHandlingSubProcess" name="Error Handling Sub Process" triggeredByEvent="true">
<bpmn2:scriptTask id="processBPMNError" name="Process Error" scriptFormat="groovy">
<bpmn2:incoming>SequenceFlow_2</bpmn2:incoming>
<bpmn2:outgoing>SequenceFlow_3</bpmn2:outgoing>
<bpmn2:script><![CDATA[import com.att.bpm.scripts.*
ExceptionUtil ex = new ExceptionUtil()
ex.processSubflowsBPMNException(execution)]]></bpmn2:script>
</bpmn2:scriptTask>
<bpmn2:sequenceFlow id="SequenceFlow_3" name="" sourceRef="processBPMNError" targetRef="EndEvent_2"/>
<bpmn2:startEvent id="StartEvent_2">
<bpmn2:outgoing>SequenceFlow_2</bpmn2:outgoing>
<bpmn2:errorEventDefinition id="ErrorEventDefinition_1"/>
</bpmn2:startEvent>
<bpmn2:sequenceFlow id="SequenceFlow_2" name="" sourceRef="StartEvent_2" targetRef="processBPMNError"/>
<bpmn2:endEvent id="EndEvent_2">
<bpmn2:incoming>SequenceFlow_3</bpmn2:incoming>
<bpmn2:terminateEventDefinition id="_TerminateEventDefinition_40"/>
</bpmn2:endEvent>
</bpmn2:subProcess>
<bpmn2:scriptTask id="queryForResourceVersion" name="Query SI Resource Version" scriptFormat="groovy">
<bpmn2:incoming>resourceVariableNotProvided</bpmn2:incoming>
<bpmn2:outgoing>SequenceFlow_5</bpmn2:outgoing>
<bpmn2:script><![CDATA[import com.att.bpm.scripts.*
GenericDeleteVnf deleteVnf= new GenericDeleteVnf()
deleteVnf.getVnfResourceVersion(execution)]]></bpmn2:script>
</bpmn2:scriptTask>
<bpmn2:sequenceFlow id="SequenceFlow_5" name="" sourceRef="queryForResourceVersion" targetRef="vnfFoundCheck"/>
<bpmn2:scriptTask id="toggleSuccess" name="Toggle Success Indicator" scriptFormat="groovy">
<bpmn2:incoming>SequenceFlow_7</bpmn2:incoming>
<bpmn2:outgoing>SequenceFlow_8</bpmn2:outgoing>
<bpmn2:script><![CDATA[import com.att.bpm.scripts.*
GenericDeleteVnf deleteVnf= new GenericDeleteVnf()
deleteVnf.setSuccessIndicator(execution, true)
execution.setVariable("WorkflowResponse", " ") //for junits]]></bpmn2:script>
</bpmn2:scriptTask>
<bpmn2:sequenceFlow id="SequenceFlow_8" name="" sourceRef="toggleSuccess" targetRef="EndEvent_1"/>
<bpmn2:scriptTask id="deleteVnf" name="DELETE&#xD;&#xA;Vnf" scriptFormat="groovy">
<bpmn2:incoming>SequenceFlow_6</bpmn2:incoming>
<bpmn2:outgoing>SequenceFlow_7</bpmn2:outgoing>
<bpmn2:script><![CDATA[import com.att.bpm.scripts.*
GenericDeleteVnf deleteVnf= new GenericDeleteVnf()
deleteVnf.deleteVnf(execution)]]></bpmn2:script>
</bpmn2:scriptTask>
<bpmn2:sequenceFlow id="SequenceFlow_7" name="" sourceRef="deleteVnf" targetRef="toggleSuccess"/>
<bpmn2:endEvent id="EndEvent_3">
<bpmn2:incoming>vnfFoundNo</bpmn2:incoming>
<bpmn2:terminateEventDefinition id="_TerminateEventDefinition_41"/>
</bpmn2:endEvent>
<bpmn2:exclusiveGateway id="vnfFoundCheck" name="Vnf Found?" default="vnfFoundNo">
<bpmn2:incoming>SequenceFlow_5</bpmn2:incoming>
<bpmn2:outgoing>vnfFoundYes</bpmn2:outgoing>
<bpmn2:outgoing>vnfFoundNo</bpmn2:outgoing>
</bpmn2:exclusiveGateway>
<bpmn2:sequenceFlow id="vnfFoundYes" name="Yes" sourceRef="vnfFoundCheck" targetRef="ExclusiveGateway_2">
<bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("GENDV_FoundIndicator") == true}]]></bpmn2:conditionExpression>
</bpmn2:sequenceFlow>
<bpmn2:sequenceFlow id="vnfFoundNo" name="No" sourceRef="vnfFoundCheck" targetRef="EndEvent_3"/>
<bpmn2:exclusiveGateway id="ExclusiveGateway_2">
<bpmn2:incoming>resourceVersionProvided</bpmn2:incoming>
<bpmn2:incoming>vnfFoundYes</bpmn2:incoming>
<bpmn2:outgoing>SequenceFlow_6</bpmn2:outgoing>
</bpmn2:exclusiveGateway>
<bpmn2:sequenceFlow id="SequenceFlow_6" name="" sourceRef="ExclusiveGateway_2" targetRef="deleteVnf"/>
<bpmn2:endEvent id="EndEvent_1">
<bpmn2:incoming>SequenceFlow_8</bpmn2:incoming>
<bpmn2:terminateEventDefinition id="_TerminateEventDefinition_39"/>
</bpmn2:endEvent>
</bpmn2:process>
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="GenericDeleteVnf">
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_78" bpmnElement="StartEvent_1">
<dc:Bounds height="36.0" width="36.0" x="74.0" y="216.0"/>
<bpmndi:BPMNLabel>
<dc:Bounds height="0.0" width="0.0" x="92.0" y="257.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="_BPMNShape_ScriptTask_310" bpmnElement="initialization">
<dc:Bounds height="80.0" width="100.0" x="192.0" y="194.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_1" bpmnElement="SequenceFlow_1" sourceElement="_BPMNShape_StartEvent_78" targetElement="_BPMNShape_ScriptTask_310">
<di:waypoint xsi:type="dc:Point" x="110.0" y="234.0"/>
<di:waypoint xsi:type="dc:Point" x="192.0" y="234.0"/>
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_239" bpmnElement="resourceVersionCheck" isMarkerVisible="true">
<dc:Bounds height="50.0" width="50.0" x="326.0" y="208.0"/>
<bpmndi:BPMNLabel>
<dc:Bounds height="22.0" width="169.0" x="360.0" y="238.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_2" bpmnElement="SequenceFlow_2" sourceElement="_BPMNShape_ScriptTask_310" targetElement="_BPMNShape_ExclusiveGateway_239">
<di:waypoint xsi:type="dc:Point" x="168.0" y="466.0"/>
<di:waypoint xsi:type="dc:Point" x="220.0" y="466.0"/>
<bpmndi:BPMNLabel>
<dc:Bounds height="6.0" width="6.0" x="191.0" y="466.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="_BPMNShape_ScriptTask_320" bpmnElement="queryForResourceVersion">
<dc:Bounds height="80.0" width="100.0" x="408.0" y="96.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="_BPMNShape_ScriptTask_321" bpmnElement="deleteVnf">
<dc:Bounds height="80.0" width="100.0" x="658.0" y="194.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_240" bpmnElement="ExclusiveGateway_2" isMarkerVisible="true">
<dc:Bounds height="50.0" width="50.0" x="562.0" y="208.0"/>
<bpmndi:BPMNLabel>
<dc:Bounds height="0.0" width="0.0" x="587.0" y="263.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="_BPMNShape_ScriptTask_322" bpmnElement="toggleSuccess">
<dc:Bounds height="80.0" width="100.0" x="802.0" y="194.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="_BPMNShape_EndEvent_240" bpmnElement="EndEvent_1">
<dc:Bounds height="36.0" width="36.0" x="1001.0" y="216.0"/>
<bpmndi:BPMNLabel>
<dc:Bounds height="0.0" width="0.0" x="1019.0" y="257.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_3" bpmnElement="resourceVariableNotProvided" sourceElement="_BPMNShape_ExclusiveGateway_239" targetElement="_BPMNShape_ScriptTask_320">
<di:waypoint xsi:type="dc:Point" x="351.0" y="208.0"/>
<di:waypoint xsi:type="dc:Point" x="351.0" y="136.0"/>
<di:waypoint xsi:type="dc:Point" x="408.0" y="136.0"/>
<bpmndi:BPMNLabel>
<dc:Bounds height="22.0" width="22.0" x="354.0" y="165.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_4" bpmnElement="resourceVersionProvided" sourceElement="_BPMNShape_ExclusiveGateway_239" targetElement="_BPMNShape_ExclusiveGateway_240">
<di:waypoint xsi:type="dc:Point" x="351.0" y="258.0"/>
<di:waypoint xsi:type="dc:Point" x="351.0" y="312.0"/>
<di:waypoint xsi:type="dc:Point" x="459.0" y="312.0"/>
<di:waypoint xsi:type="dc:Point" x="587.0" y="312.0"/>
<di:waypoint xsi:type="dc:Point" x="587.0" y="258.0"/>
<bpmndi:BPMNLabel>
<dc:Bounds height="22.0" width="29.0" x="351.0" y="276.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_5" bpmnElement="SequenceFlow_5" sourceElement="_BPMNShape_ScriptTask_320" targetElement="_BPMNShape_ExclusiveGateway_242">
<di:waypoint xsi:type="dc:Point" x="508.0" y="136.0"/>
<di:waypoint xsi:type="dc:Point" x="562.0" y="135.0"/>
<bpmndi:BPMNLabel>
<dc:Bounds height="6.0" width="6.0" x="558.0" y="135.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_6" bpmnElement="SequenceFlow_6" sourceElement="_BPMNShape_ExclusiveGateway_240" targetElement="_BPMNShape_ScriptTask_321">
<di:waypoint xsi:type="dc:Point" x="612.0" y="233.0"/>
<di:waypoint xsi:type="dc:Point" x="658.0" y="234.0"/>
<bpmndi:BPMNLabel>
<dc:Bounds height="6.0" width="6.0" x="633.0" y="234.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_7" bpmnElement="SequenceFlow_7" sourceElement="_BPMNShape_ScriptTask_321" targetElement="_BPMNShape_ScriptTask_322">
<di:waypoint xsi:type="dc:Point" x="758.0" y="234.0"/>
<di:waypoint xsi:type="dc:Point" x="802.0" y="234.0"/>
<bpmndi:BPMNLabel>
<dc:Bounds height="6.0" width="6.0" x="777.0" y="234.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_8" bpmnElement="SequenceFlow_8" sourceElement="_BPMNShape_ScriptTask_322" targetElement="_BPMNShape_EndEvent_240">
<di:waypoint xsi:type="dc:Point" x="902.0" y="234.0"/>
<di:waypoint xsi:type="dc:Point" x="1001.0" y="234.0"/>
<bpmndi:BPMNLabel>
<dc:Bounds height="6.0" width="6.0" x="949.0" y="234.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_9" bpmnElement="SequenceFlow_9" sourceElement="_BPMNShape_ScriptTask_310" targetElement="_BPMNShape_ExclusiveGateway_239">
<di:waypoint xsi:type="dc:Point" x="292.0" y="234.0"/>
<di:waypoint xsi:type="dc:Point" x="326.0" y="233.0"/>
<bpmndi:BPMNLabel>
<dc:Bounds height="6.0" width="6.0" x="311.0" y="233.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="_BPMNShape_SubProcess_36" bpmnElement="bpmnExceptionHandlingSubProcess" isExpanded="true">
<dc:Bounds height="157.0" width="304.0" x="117.0" y="387.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_82" bpmnElement="StartEvent_2">
<dc:Bounds height="36.0" width="36.0" x="132.0" y="448.0"/>
<bpmndi:BPMNLabel>
<dc:Bounds height="0.0" width="0.0" x="150.0" y="489.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="_BPMNShape_EndEvent_242" bpmnElement="EndEvent_2">
<dc:Bounds height="36.0" width="36.0" x="372.0" y="448.0"/>
<bpmndi:BPMNLabel>
<dc:Bounds height="0.0" width="0.0" x="390.0" y="489.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="_BPMNShape_ScriptTask_323" bpmnElement="processBPMNError">
<dc:Bounds height="80.0" width="100.0" x="220.0" y="426.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_10" bpmnElement="SequenceFlow_3" sourceElement="_BPMNShape_ScriptTask_323" targetElement="_BPMNShape_EndEvent_242">
<di:waypoint xsi:type="dc:Point" x="320.0" y="466.0"/>
<di:waypoint xsi:type="dc:Point" x="372.0" y="466.0"/>
<bpmndi:BPMNLabel>
<dc:Bounds height="6.0" width="6.0" x="343.0" y="466.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_242" bpmnElement="vnfFoundCheck" isMarkerVisible="true">
<dc:Bounds height="50.0" width="50.0" x="562.0" y="110.0"/>
<bpmndi:BPMNLabel>
<dc:Bounds height="22.0" width="72.0" x="552.0" y="90.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="_BPMNShape_EndEvent_243" bpmnElement="EndEvent_3">
<dc:Bounds height="36.0" width="36.0" x="708.0" y="118.0"/>
<bpmndi:BPMNLabel>
<dc:Bounds height="0.0" width="0.0" x="726.0" y="159.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_11" bpmnElement="vnfFoundYes" sourceElement="_BPMNShape_ExclusiveGateway_242" targetElement="_BPMNShape_ExclusiveGateway_240">
<di:waypoint xsi:type="dc:Point" x="587.0" y="160.0"/>
<di:waypoint xsi:type="dc:Point" x="587.0" y="208.0"/>
<bpmndi:BPMNLabel>
<dc:Bounds height="22.0" width="29.0" x="587.0" y="165.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_12" bpmnElement="vnfFoundNo" sourceElement="_BPMNShape_ExclusiveGateway_242" targetElement="_BPMNShape_EndEvent_243">
<di:waypoint xsi:type="dc:Point" x="612.0" y="135.0"/>
<di:waypoint xsi:type="dc:Point" x="708.0" y="136.0"/>
<bpmndi:BPMNLabel>
<dc:Bounds height="22.0" width="22.0" x="637.0" y="135.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</bpmn2:definitions>