You've already forked single-bpmn-process-xml
Import UAPF package
Initial template import
This commit is contained in:
3
.gitea/template
Normal file
3
.gitea/template
Normal file
@@ -0,0 +1,3 @@
|
||||
# Expand placeholders in README and BPMN assets
|
||||
README.md
|
||||
bpmn/**
|
||||
8
README.md
Normal file
8
README.md
Normal file
@@ -0,0 +1,8 @@
|
||||
# {{.RepoName}}
|
||||
|
||||
Single **BPMN** process scratchpad repository.
|
||||
|
||||
Purpose: model a BPMN process (Camunda-style), then copy `bpmn/process.bpmn` into a larger UAPF package repository.
|
||||
|
||||
- Owner: {{.RepoOwner}}
|
||||
- Repository: {{.RepoName}}
|
||||
120
bpmn/process.bpmn.xml
Normal file
120
bpmn/process.bpmn.xml
Normal file
@@ -0,0 +1,120 @@
|
||||
<?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"
|
||||
id="Definitions_{{.RepoName}}"
|
||||
targetNamespace="https://processgit.org/bpmn">
|
||||
|
||||
<bpmn:process id="Process_RequestApproval" name="Request Approval Process" isExecutable="true">
|
||||
<bpmn:startEvent id="Start_RequestReceived" name="Request Received">
|
||||
<bpmn:outgoing>Flow_1</bpmn:outgoing>
|
||||
</bpmn:startEvent>
|
||||
|
||||
<bpmn:userTask id="Task_ReviewRequest" name="Review Request">
|
||||
<bpmn:incoming>Flow_1</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_2</bpmn:outgoing>
|
||||
</bpmn:userTask>
|
||||
|
||||
<bpmn:exclusiveGateway id="Gateway_Decision" name="Approved?">
|
||||
<bpmn:incoming>Flow_2</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_Approved</bpmn:outgoing>
|
||||
<bpmn:outgoing>Flow_Rejected</bpmn:outgoing>
|
||||
</bpmn:exclusiveGateway>
|
||||
|
||||
<bpmn:task id="Task_ProcessApproval" name="Process Approval">
|
||||
<bpmn:incoming>Flow_Approved</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_3</bpmn:outgoing>
|
||||
</bpmn:task>
|
||||
|
||||
<bpmn:task id="Task_SendRejection" name="Send Rejection Notice">
|
||||
<bpmn:incoming>Flow_Rejected</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_4</bpmn:outgoing>
|
||||
</bpmn:task>
|
||||
|
||||
<bpmn:endEvent id="End_Approved" name="Request Approved">
|
||||
<bpmn:incoming>Flow_3</bpmn:incoming>
|
||||
</bpmn:endEvent>
|
||||
|
||||
<bpmn:endEvent id="End_Rejected" name="Request Rejected">
|
||||
<bpmn:incoming>Flow_4</bpmn:incoming>
|
||||
</bpmn:endEvent>
|
||||
|
||||
<bpmn:sequenceFlow id="Flow_1" sourceRef="Start_RequestReceived" targetRef="Task_ReviewRequest" />
|
||||
<bpmn:sequenceFlow id="Flow_2" sourceRef="Task_ReviewRequest" targetRef="Gateway_Decision" />
|
||||
<bpmn:sequenceFlow id="Flow_Approved" name="Yes" sourceRef="Gateway_Decision" targetRef="Task_ProcessApproval" />
|
||||
<bpmn:sequenceFlow id="Flow_Rejected" name="No" sourceRef="Gateway_Decision" targetRef="Task_SendRejection" />
|
||||
<bpmn:sequenceFlow id="Flow_3" sourceRef="Task_ProcessApproval" targetRef="End_Approved" />
|
||||
<bpmn:sequenceFlow id="Flow_4" sourceRef="Task_SendRejection" targetRef="End_Rejected" />
|
||||
</bpmn:process>
|
||||
|
||||
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
|
||||
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="Process_RequestApproval">
|
||||
<bpmndi:BPMNShape id="Start_RequestReceived_di" bpmnElement="Start_RequestReceived">
|
||||
<dc:Bounds x="152" y="102" width="36" height="36" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="138" y="145" width="65" height="27" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Task_ReviewRequest_di" bpmnElement="Task_ReviewRequest">
|
||||
<dc:Bounds x="240" y="80" width="100" height="80" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Gateway_Decision_di" bpmnElement="Gateway_Decision" isMarkerVisible="true">
|
||||
<dc:Bounds x="395" y="95" width="50" height="50" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="393" y="71" width="54" height="14" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Task_ProcessApproval_di" bpmnElement="Task_ProcessApproval">
|
||||
<dc:Bounds x="500" y="80" width="100" height="80" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Task_SendRejection_di" bpmnElement="Task_SendRejection">
|
||||
<dc:Bounds x="500" y="200" width="100" height="80" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="End_Approved_di" bpmnElement="End_Approved">
|
||||
<dc:Bounds x="652" y="102" width="36" height="36" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="627" y="145" width="87" height="14" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="End_Rejected_di" bpmnElement="End_Rejected">
|
||||
<dc:Bounds x="652" y="222" width="36" height="36" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="628" y="265" width="85" height="14" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNEdge id="Flow_1_di" bpmnElement="Flow_1">
|
||||
<di:waypoint x="188" y="120" />
|
||||
<di:waypoint x="240" y="120" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_2_di" bpmnElement="Flow_2">
|
||||
<di:waypoint x="340" y="120" />
|
||||
<di:waypoint x="395" y="120" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_Approved_di" bpmnElement="Flow_Approved">
|
||||
<di:waypoint x="445" y="120" />
|
||||
<di:waypoint x="500" y="120" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="464" y="102" width="18" height="14" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_Rejected_di" bpmnElement="Flow_Rejected">
|
||||
<di:waypoint x="420" y="145" />
|
||||
<di:waypoint x="420" y="240" />
|
||||
<di:waypoint x="500" y="240" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="428" y="190" width="15" height="14" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_3_di" bpmnElement="Flow_3">
|
||||
<di:waypoint x="600" y="120" />
|
||||
<di:waypoint x="652" y="120" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_4_di" bpmnElement="Flow_4">
|
||||
<di:waypoint x="600" y="240" />
|
||||
<di:waypoint x="652" y="240" />
|
||||
</bpmndi:BPMNEdge>
|
||||
</bpmndi:BPMNPlane>
|
||||
</bpmndi:BPMNDiagram>
|
||||
</bpmn:definitions>
|
||||
Reference in New Issue
Block a user