-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocess.bpmn
60 lines (60 loc) · 3.23 KB
/
process.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
<?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:zeebe="http://camunda.org/schema/zeebe/1.0" 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.9.0">
<bpmn:process id="myFirstProcess" name="My First Process" isExecutable="true">
<bpmn:startEvent id="StartEvent_1" name="new order received">
<bpmn:outgoing>SequenceFlow_1ytlbrs</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:endEvent id="EndEvent_1w919yi" name="order shipped">
<bpmn:incoming>SequenceFlow_0yjup2o</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="SequenceFlow_1ytlbrs" sourceRef="StartEvent_1" targetRef="Task_1ytw4ws" />
<bpmn:sequenceFlow id="SequenceFlow_0yjup2o" sourceRef="Task_1ytw4ws" targetRef="EndEvent_1w919yi" />
<bpmn:serviceTask id="Task_1ytw4ws" name="Do something">
<bpmn:extensionElements>
<zeebe:taskDefinition type="doSomething" />
<zeebe:taskHeaders>
<zeebe:header key="reservationTime" value="PT15M" />
</zeebe:taskHeaders>
<zeebe:ioMapping>
<zeebe:input source="$.orderItems" target="$.orderItems" />
<zeebe:output source="$.orderStatus" target="$.orderStatus" />
</zeebe:ioMapping>
</bpmn:extensionElements>
<bpmn:incoming>SequenceFlow_1ytlbrs</bpmn:incoming>
<bpmn:outgoing>SequenceFlow_0yjup2o</bpmn:outgoing>
</bpmn:serviceTask>
</bpmn:process>
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="myFirstProcess">
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="StartEvent_1">
<dc:Bounds x="173" y="102" width="36" height="36" />
<bpmndi:BPMNLabel>
<dc:Bounds x="166" y="138" width="50" height="24" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="EndEvent_1w919yi_di" bpmnElement="EndEvent_1w919yi">
<dc:Bounds x="648" y="102" width="36" height="36" />
<bpmndi:BPMNLabel>
<dc:Bounds x="632" y="141" width="68" height="13" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="SequenceFlow_1ytlbrs_di" bpmnElement="SequenceFlow_1ytlbrs">
<di:waypoint xsi:type="dc:Point" x="209" y="120" />
<di:waypoint xsi:type="dc:Point" x="376" y="120" />
<bpmndi:BPMNLabel>
<dc:Bounds x="292.5" y="98.5" width="0" height="13" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="SequenceFlow_0yjup2o_di" bpmnElement="SequenceFlow_0yjup2o">
<di:waypoint xsi:type="dc:Point" x="476" y="120" />
<di:waypoint xsi:type="dc:Point" x="648" y="120" />
<bpmndi:BPMNLabel>
<dc:Bounds x="562" y="98.5" width="0" height="13" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="ServiceTask_1ng46jw_di" bpmnElement="Task_1ytw4ws">
<dc:Bounds x="376" y="80" width="100" height="80" />
</bpmndi:BPMNShape>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</bpmn:definitions>