aboutsummaryrefslogtreecommitdiffstats
path: root/asdc-controller/src/test/resources/ASDC
diff options
context:
space:
mode:
authorElena Kuleshov <EK1439@att.com>2018-09-20 11:07:23 -0400
committerElena Kuleshov <EK1439@att.com>2018-09-20 13:20:34 -0400
commitb414a59f203104a9557a1f2d19727fae538f18f7 (patch)
tree3ef120c68c5f669dbb74c338ac476af05e60aa9f /asdc-controller/src/test/resources/ASDC
parent19659e205ef636cec767e32a62cc549cf9156d5b (diff)
Runtime BPMN Deployment Capability
Added license header to BpmnInstaller.java ASDC Controller integration with BPMN Installer Correct a test file name in a JUnit. BPMN deployment mechanism for WorkflowDesigner Change-Id: I670406dd09b8789c86ab0b85ef122b35ea057698 Issue-ID: SO-826 Signed-off-by: Elena Kuleshov <EK1439@att.com>
Diffstat (limited to 'asdc-controller/src/test/resources/ASDC')
-rw-r--r--asdc-controller/src/test/resources/ASDC/TestBB.bpmn53
1 files changed, 53 insertions, 0 deletions
diff --git a/asdc-controller/src/test/resources/ASDC/TestBB.bpmn b/asdc-controller/src/test/resources/ASDC/TestBB.bpmn
new file mode 100644
index 0000000000..47d1f6e649
--- /dev/null
+++ b/asdc-controller/src/test/resources/ASDC/TestBB.bpmn
@@ -0,0 +1,53 @@
+<?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" id="Definitions_1" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="1.4.0">
+ <bpmn:process id="TestBB" name="TestBB" isExecutable="true">
+ <bpmn:startEvent id="StartEvent_1" name="Start">
+ <bpmn:outgoing>SequenceFlow_1owu825</bpmn:outgoing>
+ </bpmn:startEvent>
+ <bpmn:endEvent id="EndEvent_06wodhm" name="End">
+ <bpmn:incoming>SequenceFlow_1gwcdup</bpmn:incoming>
+ </bpmn:endEvent>
+ <bpmn:sequenceFlow id="SequenceFlow_1owu825" sourceRef="StartEvent_1" targetRef="FisrtTask" />
+ <bpmn:sequenceFlow id="SequenceFlow_1gwcdup" sourceRef="FisrtTask" targetRef="EndEvent_06wodhm" />
+ <bpmn:scriptTask id="FisrtTask" name="FirstTask" scriptFormat="groovy">
+ <bpmn:incoming>SequenceFlow_1owu825</bpmn:incoming>
+ <bpmn:outgoing>SequenceFlow_1gwcdup</bpmn:outgoing>
+ <bpmn:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
+DoCreateVnf createVnf = new DoCreateVnf()
+createVnf.preProcessRequest(execution)]]></bpmn:script>
+ </bpmn:scriptTask>
+ </bpmn:process>
+ <bpmndi:BPMNDiagram id="BPMNDiagram_1">
+ <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="TestBB">
+ <bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="StartEvent_1">
+ <dc:Bounds x="217" y="171" width="36" height="36" />
+ <bpmndi:BPMNLabel>
+ <dc:Bounds x="223" y="207" width="23" height="12" />
+ </bpmndi:BPMNLabel>
+ </bpmndi:BPMNShape>
+ <bpmndi:BPMNShape id="EndEvent_06wodhm_di" bpmnElement="EndEvent_06wodhm">
+ <dc:Bounds x="630" y="171" width="36" height="36" />
+ <bpmndi:BPMNLabel>
+ <dc:Bounds x="638" y="207" width="19" height="12" />
+ </bpmndi:BPMNLabel>
+ </bpmndi:BPMNShape>
+ <bpmndi:BPMNEdge id="SequenceFlow_1owu825_di" bpmnElement="SequenceFlow_1owu825">
+ <di:waypoint xsi:type="dc:Point" x="253" y="189" />
+ <di:waypoint xsi:type="dc:Point" x="390" y="189" />
+ <bpmndi:BPMNLabel>
+ <dc:Bounds x="322" y="174" width="0" height="0" />
+ </bpmndi:BPMNLabel>
+ </bpmndi:BPMNEdge>
+ <bpmndi:BPMNEdge id="SequenceFlow_1gwcdup_di" bpmnElement="SequenceFlow_1gwcdup">
+ <di:waypoint xsi:type="dc:Point" x="490" y="189" />
+ <di:waypoint xsi:type="dc:Point" x="630" y="189" />
+ <bpmndi:BPMNLabel>
+ <dc:Bounds x="560" y="174" width="0" height="0" />
+ </bpmndi:BPMNLabel>
+ </bpmndi:BPMNEdge>
+ <bpmndi:BPMNShape id="ScriptTask_0u50zcm_di" bpmnElement="FisrtTask">
+ <dc:Bounds x="390" y="149" width="100" height="80" />
+ </bpmndi:BPMNShape>
+ </bpmndi:BPMNPlane>
+ </bpmndi:BPMNDiagram>
+</bpmn:definitions>