-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathBpmnWithComplexHtml.bpmn
More file actions
24 lines (24 loc) · 1.41 KB
/
BpmnWithComplexHtml.bpmn
File metadata and controls
24 lines (24 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?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:di="http://www.omg.org/spec/DD/20100524/DI"
id="Definitions_1"
name="Process with <special> & chars"
targetNamespace="http://bpmn.io/schema/bpmn">
<bpmn:process id="Process_1" name="Process & HTML entities" isExecutable="true">
<bpmn:startEvent id="StartEvent_1" name="Start <event>">
<bpmn:documentation>Documentation with <ul><li>HTML list</li></ul> and & "quotes"</bpmn:documentation>
<bpmn:outgoing>SequenceFlow_1</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:sequenceFlow id="SequenceFlow_1" name="Flow with & special "chars"" sourceRef="StartEvent_1" targetRef="Task_1" />
<bpmn:task id="Task_1" name="Task & more">
<bpmn:incoming>SequenceFlow_1</bpmn:incoming>
<bpmn:outgoing>SequenceFlow_2</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="SequenceFlow_2" sourceRef="Task_1" targetRef="EndEvent_1" />
<bpmn:endEvent id="EndEvent_1" name="End <event>">
<bpmn:incoming>SequenceFlow_2</bpmn:incoming>
</bpmn:endEvent>
</bpmn:process>
</bpmn:definitions>