-
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.
Showing
6 changed files
with
162 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
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:userTask | ||
id="UserTask" | ||
xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" | ||
xmlns:zeebe="http://camunda.org/schema/zeebe/1.0" | ||
> | ||
<bpmn:extensionElements> | ||
<zeebe:taskListeners> | ||
<zeebe:taskListener eventType="complete" retries="3" type="complete_listener"/> | ||
</zeebe:taskListeners> | ||
</bpmn:extensionElements> | ||
</bpmn:userTask> |
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,34 @@ | ||
<?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:userTask id="UserTask"> | ||
<bpmn:extensionElements> | ||
<zeebe:taskListeners> | ||
<zeebe:taskListener eventType="assign" retries="2" type="assign_listener" /> | ||
</zeebe:taskListeners> | ||
</bpmn:extensionElements> | ||
</bpmn:userTask> | ||
<bpmn:subProcess id="SubProcess"> | ||
<bpmn:userTask id="UserTaskSubprocess"> | ||
<bpmn:extensionElements> | ||
<zeebe:taskListeners> | ||
<zeebe:taskListener eventType="assign" retries="4" type="assign_listener" /> | ||
</zeebe:taskListeners> | ||
</bpmn:extensionElements> | ||
</bpmn:userTask> | ||
</bpmn:subProcess> | ||
</bpmn:process> | ||
<bpmndi:BPMNDiagram id="BPMNDiagram_1"> | ||
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="ZeebePropertiesTest"> | ||
<bpmndi:BPMNShape id="UserTask_di" bpmnElement="UserTask"> | ||
<dc:Bounds x="160" y="400" width="100" height="80" /> | ||
</bpmndi:BPMNShape> | ||
<bpmndi:BPMNShape id="SubProcess_di" bpmnElement="SubProcess" isExpanded="true"> | ||
<dc:Bounds x="160" y="510" width="350" height="200" /> | ||
</bpmndi:BPMNShape> | ||
<bpmndi:BPMNShape id="UserTaskSubprocess_di" bpmnElement="UserTaskSubprocess"> | ||
<dc:Bounds x="200" y="592" width="100" height="80" /> | ||
</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