| <?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="_eb5eEHR6EeaJwpcpVN5gXw" exporter="camunda modeler" exporterVersion="2.7.0" targetNamespace="http://camunda.org/schema/1.0/bpmn"> |
| <bpmn2:process id="GenericGetVnf" name="GenericGetVnf" isExecutable="true"> |
| <bpmn2:startEvent id="StartEvent_1"> |
| <bpmn2:outgoing>SequenceFlow_1</bpmn2:outgoing> |
| </bpmn2:startEvent> |
| <bpmn2:scriptTask id="intialization" name="Intialization" scriptFormat="groovy"> |
| <bpmn2:incoming>SequenceFlow_1</bpmn2:incoming> |
| <bpmn2:outgoing>SequenceFlow_2</bpmn2:outgoing> |
| <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.common.scripts.* |
| GenericGetVnf genericGetVnf = new GenericGetVnf () |
| genericGetVnf.preProcessRequest(execution) |
| ]]></bpmn2:script> |
| </bpmn2:scriptTask> |
| <bpmn2:sequenceFlow id="SequenceFlow_1" name="" sourceRef="StartEvent_1" targetRef="intialization"/> |
| <bpmn2:sequenceFlow id="SequenceFlow_2" name="" sourceRef="intialization" targetRef="vnfIdProvided"/> |
| <bpmn2:exclusiveGateway id="vnfIdProvided" name="Vnf Id Provided?" default="noVnfId"> |
| <bpmn2:incoming>SequenceFlow_2</bpmn2:incoming> |
| <bpmn2:outgoing>noVnfId</bpmn2:outgoing> |
| <bpmn2:outgoing>haveVnfId</bpmn2:outgoing> |
| </bpmn2:exclusiveGateway> |
| <bpmn2:sequenceFlow id="noVnfId" name="No" sourceRef="vnfIdProvided" targetRef="getVnfByName"/> |
| <bpmn2:sequenceFlow id="haveVnfId" name="Yes" sourceRef="vnfIdProvided" targetRef="getGenericVnf"> |
| <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("GENGV_getVnfByName") == false}]]></bpmn2:conditionExpression> |
| </bpmn2:sequenceFlow> |
| <bpmn2:scriptTask id="getVnfByName" name="GET Vnf By Name" scriptFormat="groovy"> |
| <bpmn2:incoming>noVnfId</bpmn2:incoming> |
| <bpmn2:outgoing>SequenceFlow_9</bpmn2:outgoing> |
| <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.common.scripts.* |
| GenericGetVnf genericGetVnf = new GenericGetVnf() |
| genericGetVnf.getVnfByName(execution)]]></bpmn2:script> |
| </bpmn2:scriptTask> |
| <bpmn2:sequenceFlow id="SequenceFlow_9" name="" sourceRef="getVnfByName" targetRef="ExclusiveGateway_2"/> |
| <bpmn2:exclusiveGateway id="ExclusiveGateway_2"> |
| <bpmn2:incoming>SequenceFlow_9</bpmn2:incoming> |
| <bpmn2:incoming>SequenceFlow_10</bpmn2:incoming> |
| <bpmn2:outgoing>SequenceFlow_7</bpmn2:outgoing> |
| </bpmn2:exclusiveGateway> |
| <bpmn2:sequenceFlow id="SequenceFlow_7" name="" sourceRef="ExclusiveGateway_2" targetRef="toggleSuccess"/> |
| <bpmn2:scriptTask id="getGenericVnf" name="GET Vnf By
Id" scriptFormat="groovy"> |
| <bpmn2:incoming>haveVnfId</bpmn2:incoming> |
| <bpmn2:outgoing>SequenceFlow_10</bpmn2:outgoing> |
| <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.common.scripts.* |
| GenericGetVnf genericGetVnf = new GenericGetVnf() |
| genericGetVnf.getVnfById(execution)]]></bpmn2:script> |
| </bpmn2:scriptTask> |
| <bpmn2:sequenceFlow id="SequenceFlow_10" name="" sourceRef="getGenericVnf" targetRef="ExclusiveGateway_2"/> |
| <bpmn2:subProcess id="bpmnExceptionHandlingSubProcess" name="Error Handling Sub Process" triggeredByEvent="true"> |
| <bpmn2:endEvent id="EndEvent_3"> |
| <bpmn2:incoming>SequenceFlow_12</bpmn2:incoming> |
| <bpmn2:terminateEventDefinition id="_TerminateEventDefinition_31"/> |
| </bpmn2:endEvent> |
| <bpmn2:scriptTask id="proccessBPMNError" name="Process Error" scriptFormat="groovy"> |
| <bpmn2:incoming>SequenceFlow_11</bpmn2:incoming> |
| <bpmn2:outgoing>SequenceFlow_12</bpmn2:outgoing> |
| <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.common.scripts.* |
| |
| ExceptionUtil ex = new ExceptionUtil() |
| ex.processSubflowsBPMNException(execution)]]></bpmn2:script> |
| </bpmn2:scriptTask> |
| <bpmn2:sequenceFlow id="SequenceFlow_12" name="" sourceRef="proccessBPMNError" targetRef="EndEvent_3"/> |
| <bpmn2:startEvent id="catchMSOWorkflowException"> |
| <bpmn2:outgoing>SequenceFlow_11</bpmn2:outgoing> |
| <bpmn2:errorEventDefinition id="ErrorEventDefinition_1"/> |
| </bpmn2:startEvent> |
| <bpmn2:sequenceFlow id="SequenceFlow_11" name="" sourceRef="catchMSOWorkflowException" targetRef="proccessBPMNError"/> |
| </bpmn2:subProcess> |
| <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 org.openecomp.mso.bpmn.common.scripts.* |
| GenericGetVnf genericGetVnf = new GenericGetVnf() |
| genericGetVnf.setSuccessIndicator(execution, true) |
| ]]></bpmn2:script> |
| </bpmn2:scriptTask> |
| <bpmn2:sequenceFlow id="SequenceFlow_8" name="" sourceRef="toggleSuccess" targetRef="EndEvent_1"/> |
| <bpmn2:endEvent id="EndEvent_1"> |
| <bpmn2:incoming>SequenceFlow_8</bpmn2:incoming> |
| <bpmn2:terminateEventDefinition id="_TerminateEventDefinition_28"/> |
| </bpmn2:endEvent> |
| </bpmn2:process> |
| <bpmn2:error id="Error_1" errorCode="MSOWorkflowException" name="MSO Workflow Exception"/> |
| <bpmndi:BPMNDiagram id="BPMNDiagram_1"> |
| <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="GenericGetVnf"> |
| <bpmndi:BPMNShape id="_BPMNShape_StartEvent_71" bpmnElement="StartEvent_1"> |
| <dc:Bounds height="36.0" width="36.0" x="110.0" y="271.0"/> |
| <bpmndi:BPMNLabel> |
| <dc:Bounds height="0.0" width="0.0" x="128.0" y="312.0"/> |
| </bpmndi:BPMNLabel> |
| </bpmndi:BPMNShape> |
| <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_295" bpmnElement="intialization"> |
| <dc:Bounds height="80.0" width="100.0" x="228.0" y="249.0"/> |
| </bpmndi:BPMNShape> |
| <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_230" bpmnElement="vnfIdProvided" isMarkerVisible="true"> |
| <dc:Bounds height="50.0" width="50.0" x="372.0" y="263.0"/> |
| <bpmndi:BPMNLabel> |
| <dc:Bounds height="22.0" width="99.0" x="419.0" y="292.0"/> |
| </bpmndi:BPMNLabel> |
| </bpmndi:BPMNShape> |
| <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_1" bpmnElement="SequenceFlow_1" sourceElement="_BPMNShape_StartEvent_71" targetElement="_BPMNShape_ScriptTask_295"> |
| <di:waypoint xsi:type="dc:Point" x="146.0" y="289.0"/> |
| <di:waypoint xsi:type="dc:Point" x="228.0" y="289.0"/> |
| </bpmndi:BPMNEdge> |
| <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_2" bpmnElement="SequenceFlow_2" sourceElement="_BPMNShape_ScriptTask_295" targetElement="_BPMNShape_ExclusiveGateway_230"> |
| <di:waypoint xsi:type="dc:Point" x="328.0" y="289.0"/> |
| <di:waypoint xsi:type="dc:Point" x="372.0" y="288.0"/> |
| <bpmndi:BPMNLabel> |
| <dc:Bounds height="6.0" width="6.0" x="347.0" y="288.0"/> |
| </bpmndi:BPMNLabel> |
| </bpmndi:BPMNEdge> |
| <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_296" bpmnElement="getVnfByName"> |
| <dc:Bounds height="80.0" width="100.0" x="456.0" y="156.0"/> |
| </bpmndi:BPMNShape> |
| <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_231" bpmnElement="ExclusiveGateway_2" isMarkerVisible="true"> |
| <dc:Bounds height="50.0" width="50.0" x="600.0" y="263.0"/> |
| <bpmndi:BPMNLabel> |
| <dc:Bounds height="0.0" width="0.0" x="625.0" y="318.0"/> |
| </bpmndi:BPMNLabel> |
| </bpmndi:BPMNShape> |
| <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_3" bpmnElement="noVnfId" sourceElement="_BPMNShape_ExclusiveGateway_230" targetElement="_BPMNShape_ScriptTask_296"> |
| <di:waypoint xsi:type="dc:Point" x="397.0" y="263.0"/> |
| <di:waypoint xsi:type="dc:Point" x="397.0" y="196.0"/> |
| <di:waypoint xsi:type="dc:Point" x="456.0" y="196.0"/> |
| <bpmndi:BPMNLabel> |
| <dc:Bounds height="22.0" width="22.0" x="399.0" y="219.0"/> |
| </bpmndi:BPMNLabel> |
| </bpmndi:BPMNEdge> |
| <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_5" bpmnElement="haveVnfId" sourceElement="_BPMNShape_ExclusiveGateway_230" targetElement="_BPMNShape_ScriptTask_297"> |
| <di:waypoint xsi:type="dc:Point" x="397.0" y="313.0"/> |
| <di:waypoint xsi:type="dc:Point" x="397.0" y="368.0"/> |
| <di:waypoint xsi:type="dc:Point" x="456.0" y="368.0"/> |
| <bpmndi:BPMNLabel> |
| <dc:Bounds height="22.0" width="29.0" x="396.0" y="328.0"/> |
| </bpmndi:BPMNLabel> |
| </bpmndi:BPMNEdge> |
| <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_297" bpmnElement="getGenericVnf"> |
| <dc:Bounds height="80.0" width="100.0" x="456.0" y="328.0"/> |
| </bpmndi:BPMNShape> |
| <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_298" bpmnElement="toggleSuccess"> |
| <dc:Bounds height="80.0" width="100.0" x="696.0" y="249.0"/> |
| </bpmndi:BPMNShape> |
| <bpmndi:BPMNShape id="_BPMNShape_EndEvent_226" bpmnElement="EndEvent_1"> |
| <dc:Bounds height="36.0" width="36.0" x="888.0" y="271.0"/> |
| <bpmndi:BPMNLabel> |
| <dc:Bounds height="0.0" width="0.0" x="906.0" y="312.0"/> |
| </bpmndi:BPMNLabel> |
| </bpmndi:BPMNShape> |
| <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_7" bpmnElement="SequenceFlow_7" sourceElement="_BPMNShape_ExclusiveGateway_231" targetElement="_BPMNShape_ScriptTask_298"> |
| <di:waypoint xsi:type="dc:Point" x="650.0" y="288.0"/> |
| <di:waypoint xsi:type="dc:Point" x="696.0" y="289.0"/> |
| <bpmndi:BPMNLabel> |
| <dc:Bounds height="6.0" width="6.0" x="673.0" y="289.0"/> |
| </bpmndi:BPMNLabel> |
| </bpmndi:BPMNEdge> |
| <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_8" bpmnElement="SequenceFlow_8" sourceElement="_BPMNShape_ScriptTask_298" targetElement="_BPMNShape_EndEvent_226"> |
| <di:waypoint xsi:type="dc:Point" x="796.0" y="289.0"/> |
| <di:waypoint xsi:type="dc:Point" x="888.0" y="289.0"/> |
| <bpmndi:BPMNLabel> |
| <dc:Bounds height="6.0" width="6.0" x="829.0" y="289.0"/> |
| </bpmndi:BPMNLabel> |
| </bpmndi:BPMNEdge> |
| <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_11" bpmnElement="SequenceFlow_9" sourceElement="_BPMNShape_ScriptTask_296" targetElement="_BPMNShape_ExclusiveGateway_231"> |
| <di:waypoint xsi:type="dc:Point" x="556.0" y="196.0"/> |
| <di:waypoint xsi:type="dc:Point" x="625.0" y="196.0"/> |
| <di:waypoint xsi:type="dc:Point" x="625.0" y="263.0"/> |
| <bpmndi:BPMNLabel> |
| <dc:Bounds height="6.0" width="6.0" x="622.0" y="205.0"/> |
| </bpmndi:BPMNLabel> |
| </bpmndi:BPMNEdge> |
| <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_12" bpmnElement="SequenceFlow_10" sourceElement="_BPMNShape_ScriptTask_297" targetElement="_BPMNShape_ExclusiveGateway_231"> |
| <di:waypoint xsi:type="dc:Point" x="556.0" y="368.0"/> |
| <di:waypoint xsi:type="dc:Point" x="625.0" y="368.0"/> |
| <di:waypoint xsi:type="dc:Point" x="625.0" y="313.0"/> |
| <bpmndi:BPMNLabel> |
| <dc:Bounds height="6.0" width="6.0" x="621.0" y="368.0"/> |
| </bpmndi:BPMNLabel> |
| </bpmndi:BPMNEdge> |
| <bpmndi:BPMNShape id="_BPMNShape_SubProcess_30" bpmnElement="bpmnExceptionHandlingSubProcess" isExpanded="true"> |
| <dc:Bounds height="169.0" width="313.0" x="168.0" y="468.0"/> |
| </bpmndi:BPMNShape> |
| <bpmndi:BPMNShape id="_BPMNShape_StartEvent_74" bpmnElement="catchMSOWorkflowException"> |
| <dc:Bounds height="36.0" width="36.0" x="180.0" y="535.0"/> |
| <bpmndi:BPMNLabel> |
| <dc:Bounds height="0.0" width="0.0" x="198.0" y="576.0"/> |
| </bpmndi:BPMNLabel> |
| </bpmndi:BPMNShape> |
| <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_302" bpmnElement="proccessBPMNError"> |
| <dc:Bounds height="80.0" width="100.0" x="275.0" y="513.0"/> |
| </bpmndi:BPMNShape> |
| <bpmndi:BPMNShape id="_BPMNShape_EndEvent_231" bpmnElement="EndEvent_3"> |
| <dc:Bounds height="36.0" width="36.0" x="432.0" y="535.0"/> |
| <bpmndi:BPMNLabel> |
| <dc:Bounds height="0.0" width="0.0" x="450.0" y="576.0"/> |
| </bpmndi:BPMNLabel> |
| </bpmndi:BPMNShape> |
| <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_13" bpmnElement="SequenceFlow_11" sourceElement="_BPMNShape_StartEvent_74" targetElement="_BPMNShape_ScriptTask_302"> |
| <di:waypoint xsi:type="dc:Point" x="216.0" y="553.0"/> |
| <di:waypoint xsi:type="dc:Point" x="275.0" y="553.0"/> |
| <bpmndi:BPMNLabel> |
| <dc:Bounds height="6.0" width="6.0" x="238.0" y="553.0"/> |
| </bpmndi:BPMNLabel> |
| </bpmndi:BPMNEdge> |
| <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_14" bpmnElement="SequenceFlow_12" sourceElement="_BPMNShape_ScriptTask_302" targetElement="_BPMNShape_EndEvent_231"> |
| <di:waypoint xsi:type="dc:Point" x="375.0" y="553.0"/> |
| <di:waypoint xsi:type="dc:Point" x="432.0" y="553.0"/> |
| <bpmndi:BPMNLabel> |
| <dc:Bounds height="6.0" width="6.0" x="402.0" y="553.0"/> |
| </bpmndi:BPMNLabel> |
| </bpmndi:BPMNEdge> |
| </bpmndi:BPMNPlane> |
| </bpmndi:BPMNDiagram> |
| </bpmn2:definitions> |