-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: support zeebe:UserTaskListener
related to camunda/camunda-modeler#4590
- Loading branch information
1 parent
0453da9
commit ca3cce8
Showing
6 changed files
with
172 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
test/fixtures/xml/userTask-zeebe-userTaskListener.part.bpmn
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<bpmn:task | ||
id="task-1" | ||
xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" | ||
xmlns:zeebe="http://camunda.org/schema/zeebe/1.0" | ||
> | ||
<bpmn:extensionElements> | ||
<zeebe:userTaskListeners> | ||
<zeebe:userTaskListener eventType="complete" retries="3" type="complete_listener"/> | ||
</zeebe:userTaskListeners> | ||
</bpmn:extensionElements> | ||
</bpmn:task> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<?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:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zeebe="http://camunda.org/schema/zeebe/1.0" xmlns:modeler="http://camunda.org/schema/modeler/1.0" id="Definitions_0qh9wc7" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="5.23.0" modeler:userTaskPlatform="Camunda Cloud" modeler:userTaskPlatformVersion="8.0.0"> | ||
<bpmn:process id="ZeebePropertiesTest" name="Zeebe Properties Test" isExecutable="true"> | ||
<bpmn:extensionElements> | ||
<zeebe:userTaskListeners> | ||
<zeebe:userTaskListener eventType="complete" retries="1" type="complete_listener" /> | ||
</zeebe:userTaskListeners> | ||
</bpmn:extensionElements> | ||
<bpmn:userTask id="Activity_0ls77qd"> | ||
<bpmn:extensionElements> | ||
<zeebe:userTaskListeners> | ||
<zeebe:userTaskListener eventType="assign" retries="2" type="assign_listener" /> | ||
</zeebe:userTaskListeners> | ||
</bpmn:extensionElements> | ||
</bpmn:userTask> | ||
<bpmn:subProcess id="Activity_1yf35jc"> | ||
<bpmn:extensionElements> | ||
<zeebe:userTaskListeners> | ||
<zeebe:userTaskListener eventType="complete" retries="3" type="complete_listener" /> | ||
</zeebe:userTaskListeners> | ||
</bpmn:extensionElements> | ||
<bpmn:userTask id="Event_06ifkc6"> | ||
<bpmn:extensionElements> | ||
<zeebe:userTaskListeners> | ||
<zeebe:userTaskListener eventType="assign" retries="4" type="assign_listener" /> | ||
</zeebe:userTaskListeners> | ||
</bpmn:extensionElements> | ||
</bpmn:userTask> | ||
</bpmn:subProcess> | ||
</bpmn:process> | ||
<bpmndi:BPMNDiagram id="BPMNDiagram_1"> | ||
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="ZeebePropertiesTest"> | ||
<bpmndi:BPMNShape id="Activity_0ls77qd_di" bpmnElement="Activity_0ls77qd"> | ||
<dc:Bounds x="160" y="400" width="100" height="80" /> | ||
</bpmndi:BPMNShape> | ||
<bpmndi:BPMNShape id="Activity_1yf35jc_di" bpmnElement="Activity_1yf35jc" isExpanded="true"> | ||
<dc:Bounds x="160" y="510" width="350" height="200" /> | ||
</bpmndi:BPMNShape> | ||
<bpmndi:BPMNShape id="Event_06ifkc6_di" bpmnElement="Event_06ifkc6"> | ||
<dc:Bounds x="200" y="592" width="36" height="36" /> | ||
</bpmndi:BPMNShape> | ||
</bpmndi:BPMNPlane> | ||
</bpmndi:BPMNDiagram> | ||
</bpmn:definitions> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters