forked from ProcessMaker/processmaker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScriptTask.bpmn
More file actions
45 lines (45 loc) · 2.51 KB
/
ScriptTask.bpmn
File metadata and controls
45 lines (45 loc) · 2.51 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
39
40
41
42
43
44
45
<?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:di="http://www.omg.org/spec/DD/20100524/DI"
xmlns:pm="http://processmaker.com/BPMN/2.0/Schema.xsd"
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_1" name="Start Event" pm:allowInterstitial="false">
<bpmn:outgoing>node_6</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:endEvent id="node_2" name="End Event">
<bpmn:incoming>node_8</bpmn:incoming>
</bpmn:endEvent>
<bpmn:scriptTask id="node_3" name="Script Task" pm:scriptRef="3">
<bpmn:incoming>node_6</bpmn:incoming>
<bpmn:outgoing>node_8</bpmn:outgoing>
</bpmn:scriptTask>
<bpmn:sequenceFlow id="node_6" name="" sourceRef="node_1" targetRef="node_3" />
<bpmn:sequenceFlow id="node_8" name="" sourceRef="node_3" targetRef="node_2" />
</bpmn:process>
<bpmndi:BPMNDiagram id="BPMNDiagramId">
<bpmndi:BPMNPlane id="BPMNPlaneId" bpmnElement="ProcessId">
<bpmndi:BPMNShape id="node_1_di" bpmnElement="node_1">
<dc:Bounds x="180" y="160" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="node_2_di" bpmnElement="node_2">
<dc:Bounds x="520" y="160" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="node_3_di" bpmnElement="node_3">
<dc:Bounds x="320" y="140" width="116" height="76" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="node_6_di" bpmnElement="node_6">
<di:waypoint x="198" y="178" />
<di:waypoint x="378" y="178" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="node_8_di" bpmnElement="node_8">
<di:waypoint x="378" y="178" />
<di:waypoint x="538" y="178" />
</bpmndi:BPMNEdge>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</bpmn:definitions>