-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhello_world.bpmn
56 lines (56 loc) · 2.96 KB
/
hello_world.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
<?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" xmlns:modeler="http://camunda.org/schema/modeler/1.0" id="Definitions_1jpnpte" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="5.17.0" modeler:executionPlatform="Camunda Cloud" modeler:executionPlatformVersion="8.3.0">
<bpmn:process id="HelloWorld" name="Hello World" isExecutable="true">
<bpmn:startEvent id="Start" name="Start">
<bpmn:extensionElements>
<zeebe:properties>
<zeebe:property name="camundaModeler:exampleOutputJson" value="{ "name": "Eric" }" />
</zeebe:properties>
</bpmn:extensionElements>
<bpmn:outgoing>Flow_0zlro9p</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:sequenceFlow id="Flow_0zlro9p" sourceRef="Start" targetRef="SayHello" />
<bpmn:endEvent id="End" name="End">
<bpmn:incoming>Flow_1doumjv</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="Flow_1doumjv" sourceRef="SayHello" targetRef="End" />
<bpmn:serviceTask id="SayHello" name="Say Hello">
<bpmn:extensionElements>
<zeebe:taskDefinition type="say_hello" />
<zeebe:properties>
<zeebe:property name="camundaModeler:exampleOutputJson" value="{ "message": "Hello Eric" }" />
</zeebe:properties>
</bpmn:extensionElements>
<bpmn:incoming>Flow_0zlro9p</bpmn:incoming>
<bpmn:outgoing>Flow_1doumjv</bpmn:outgoing>
</bpmn:serviceTask>
</bpmn:process>
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="HelloWorld">
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="Start">
<dc:Bounds x="179" y="99" width="36" height="36" />
<bpmndi:BPMNLabel>
<dc:Bounds x="186" y="142" width="24" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_0ylwusn_di" bpmnElement="End">
<dc:Bounds x="432" y="99" width="36" height="36" />
<bpmndi:BPMNLabel>
<dc:Bounds x="440" y="142" width="20" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_0ikv6ss_di" bpmnElement="SayHello">
<dc:Bounds x="270" y="77" width="100" height="80" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_0zlro9p_di" bpmnElement="Flow_0zlro9p">
<di:waypoint x="215" y="117" />
<di:waypoint x="270" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1doumjv_di" bpmnElement="Flow_1doumjv">
<di:waypoint x="370" y="117" />
<di:waypoint x="432" y="117" />
</bpmndi:BPMNEdge>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</bpmn:definitions>