This repository has been archived by the owner on Nov 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathtest-workflow.bpmn
62 lines (62 loc) · 3.4 KB
/
test-workflow.bpmn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?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:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:zeebe="http://camunda.org/schema/zeebe/1.0" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="Definitions_1xhhpjm" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="4.8.0">
<bpmn:process id="test-workflow" name="Test Workflow" isExecutable="true">
<bpmn:startEvent id="StartEvent_1" name="Start">
<bpmn:outgoing>SequenceFlow_1c0fama</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:serviceTask id="ServiceTask_0u1rrya" name="test-task">
<bpmn:extensionElements>
<zeebe:taskDefinition type="test-task" retries="4" />
</bpmn:extensionElements>
<bpmn:incoming>SequenceFlow_1c0fama</bpmn:incoming>
<bpmn:outgoing>SequenceFlow_1l199j1</bpmn:outgoing>
</bpmn:serviceTask>
<bpmn:endEvent id="EndEvent_06nwb5s" name="End">
<bpmn:incoming>SequenceFlow_0sf0zdo</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="SequenceFlow_1c0fama" sourceRef="StartEvent_1" targetRef="ServiceTask_0u1rrya" />
<bpmn:sequenceFlow id="SequenceFlow_0sf0zdo" sourceRef="ServiceTask_0qkif4s" targetRef="EndEvent_06nwb5s" />
<bpmn:serviceTask id="ServiceTask_0qkif4s" name="test-task2">
<bpmn:extensionElements>
<zeebe:taskDefinition type="test-task2" retries="3" />
</bpmn:extensionElements>
<bpmn:incoming>SequenceFlow_1l199j1</bpmn:incoming>
<bpmn:outgoing>SequenceFlow_0sf0zdo</bpmn:outgoing>
</bpmn:serviceTask>
<bpmn:sequenceFlow id="SequenceFlow_1l199j1" sourceRef="ServiceTask_0u1rrya" targetRef="ServiceTask_0qkif4s" />
</bpmn:process>
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="test-workflow">
<bpmndi:BPMNEdge id="SequenceFlow_1l199j1_di" bpmnElement="SequenceFlow_1l199j1">
<di:waypoint x="415" y="121" />
<di:waypoint x="539" y="121" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="SequenceFlow_0sf0zdo_di" bpmnElement="SequenceFlow_0sf0zdo">
<di:waypoint x="639" y="121" />
<di:waypoint x="748" y="121" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="SequenceFlow_1c0fama_di" bpmnElement="SequenceFlow_1c0fama">
<di:waypoint x="215" y="121" />
<di:waypoint x="315" y="121" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="StartEvent_1">
<dc:Bounds x="179" y="103" width="36" height="36" />
<bpmndi:BPMNLabel>
<dc:Bounds x="185" y="146" width="24" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="ServiceTask_0u1rrya_di" bpmnElement="ServiceTask_0u1rrya">
<dc:Bounds x="315" y="81" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="EndEvent_06nwb5s_di" bpmnElement="EndEvent_06nwb5s">
<dc:Bounds x="748" y="103" width="36" height="36" />
<bpmndi:BPMNLabel>
<dc:Bounds x="756" y="146" width="20" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="ServiceTask_0qkif4s_di" bpmnElement="ServiceTask_0qkif4s">
<dc:Bounds x="539" y="81" width="100" height="80" />
</bpmndi:BPMNShape>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</bpmn:definitions>