forked from camunda/camunda-bpm-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
process.bpmn
38 lines (38 loc) · 2.2 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
<?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:camunda="http://camunda.org/schema/1.0/bpmn" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" id="Definitions_1" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="4.6.0">
<bpmn:process id="process" name="Process" isExecutable="true">
<bpmn:startEvent id="Event_0qpo74x">
<bpmn:outgoing>Flow_1xb6g5b</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:sequenceFlow id="Flow_1xb6g5b" sourceRef="Event_0qpo74x" targetRef="Activity_0myg2yy" />
<bpmn:endEvent id="Event_1uufnns">
<bpmn:incoming>Flow_1xqifgn</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="Flow_1xqifgn" sourceRef="Activity_0myg2yy" targetRef="Event_1uufnns" />
<bpmn:serviceTask id="Activity_0myg2yy" name="do something" camunda:type="external" camunda:topic="my-topic">
<bpmn:incoming>Flow_1xb6g5b</bpmn:incoming>
<bpmn:outgoing>Flow_1xqifgn</bpmn:outgoing>
</bpmn:serviceTask>
</bpmn:process>
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="process">
<bpmndi:BPMNEdge id="Flow_1xqifgn_di" bpmnElement="Flow_1xqifgn">
<di:waypoint x="340" y="120" />
<di:waypoint x="392" y="120" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1xb6g5b_di" bpmnElement="Flow_1xb6g5b">
<di:waypoint x="188" y="120" />
<di:waypoint x="240" y="120" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="Event_0qpo74x_di" bpmnElement="Event_0qpo74x">
<dc:Bounds x="152" y="102" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_1uufnns_di" bpmnElement="Event_1uufnns">
<dc:Bounds x="392" y="102" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_0gbky4c_di" bpmnElement="Activity_0myg2yy">
<dc:Bounds x="240" y="80" width="100" height="80" />
</bpmndi:BPMNShape>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</bpmn:definitions>