forked from ProcessMaker/processmaker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScriptWithErrorHandling.bpmn
More file actions
38 lines (38 loc) · 2.4 KB
/
ScriptWithErrorHandling.bpmn
File metadata and controls
38 lines (38 loc) · 2.4 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?xml version="1.0" encoding="UTF-8"?>
<bpmn:definitions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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:pm="http://processmaker.com/BPMN/2.0/Schema.xsd" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" xmlns:tns="http://sourceforge.net/bpmn/definitions/_1530553328908" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://bpmn.io/schema/bpmn" exporter="ProcessMaker Modeler" exporterVersion="1.0" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL http://bpmn.sourceforge.net/schemas/BPMN20.xsd">
<bpmn:process id="ProcessId" name="ProcessName" isExecutable="true">
<bpmn:startEvent id="node_45" name="Start Event" pm:allowInterstitial="false" pm:config="{"web_entry":null}">
<bpmn:outgoing>node_69</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:scriptTask id="node_54" name="Script Task" pm:scriptRef="[script_id]" pm:errorHandling="[error_handling]">
<bpmn:incoming>node_69</bpmn:incoming>
<bpmn:outgoing>node_71</bpmn:outgoing>
</bpmn:scriptTask>
<bpmn:endEvent id="node_64" name="End Event">
<bpmn:incoming>node_71</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="node_69" name="" sourceRef="node_45" targetRef="node_54" />
<bpmn:sequenceFlow id="node_71" name="" sourceRef="node_54" targetRef="node_64" />
</bpmn:process>
<bpmndi:BPMNDiagram id="BPMNDiagramId">
<bpmndi:BPMNPlane id="BPMNPlaneId" bpmnElement="ProcessId">
<bpmndi:BPMNShape id="node_45_di" bpmnElement="node_45">
<dc:Bounds x="140" y="150" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="node_54_di" bpmnElement="node_54">
<dc:Bounds x="270" y="130" width="116" height="76" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="node_64_di" bpmnElement="node_64">
<dc:Bounds x="440" y="330" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="node_69_di" bpmnElement="node_69">
<di:waypoint x="158" y="168" />
<di:waypoint x="328" y="168" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="node_71_di" bpmnElement="node_71">
<di:waypoint x="328" y="168" />
<di:waypoint x="458" y="348" />
</bpmndi:BPMNEdge>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</bpmn:definitions>