You've already forked uapf-decision-first
Import UAPF package
Initial template import
This commit is contained in:
142
decision-process/bpmn/process.bpmn.xml
Normal file
142
decision-process/bpmn/process.bpmn.xml
Normal file
@@ -0,0 +1,142 @@
|
||||
<?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:di="http://www.omg.org/spec/DD/20100524/DI"
|
||||
id="Definitions_LoanProcess"
|
||||
targetNamespace="http://bpmn.io/schema/bpmn">
|
||||
<bpmn:process id="LoanApplicationProcess" name="Loan Application Process" isExecutable="true">
|
||||
<bpmn:startEvent id="StartEvent_1" name="Loan Application Received">
|
||||
<bpmn:outgoing>Flow_1</bpmn:outgoing>
|
||||
</bpmn:startEvent>
|
||||
<bpmn:sequenceFlow id="Flow_1" sourceRef="StartEvent_1" targetRef="Task_Validate"/>
|
||||
|
||||
<bpmn:userTask id="Task_Validate" name="Validate Application">
|
||||
<bpmn:incoming>Flow_1</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_2</bpmn:outgoing>
|
||||
</bpmn:userTask>
|
||||
<bpmn:sequenceFlow id="Flow_2" sourceRef="Task_Validate" targetRef="Task_CheckCredit"/>
|
||||
|
||||
<bpmn:serviceTask id="Task_CheckCredit" name="Check Credit Score">
|
||||
<bpmn:incoming>Flow_2</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_3</bpmn:outgoing>
|
||||
</bpmn:serviceTask>
|
||||
<bpmn:sequenceFlow id="Flow_3" sourceRef="Task_CheckCredit" targetRef="Task_ApprovalDecision"/>
|
||||
|
||||
<bpmn:businessRuleTask id="Task_ApprovalDecision" name="Loan Approval Decision">
|
||||
<bpmn:incoming>Flow_3</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_4</bpmn:outgoing>
|
||||
</bpmn:businessRuleTask>
|
||||
<bpmn:sequenceFlow id="Flow_4" sourceRef="Task_ApprovalDecision" targetRef="Gateway_Approved"/>
|
||||
|
||||
<bpmn:exclusiveGateway id="Gateway_Approved" name="Approved?">
|
||||
<bpmn:incoming>Flow_4</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_Approved</bpmn:outgoing>
|
||||
<bpmn:outgoing>Flow_Rejected</bpmn:outgoing>
|
||||
</bpmn:exclusiveGateway>
|
||||
<bpmn:sequenceFlow id="Flow_Approved" name="Yes" sourceRef="Gateway_Approved" targetRef="Task_Disburse"/>
|
||||
<bpmn:sequenceFlow id="Flow_Rejected" name="No" sourceRef="Gateway_Approved" targetRef="Task_Reject"/>
|
||||
|
||||
<bpmn:serviceTask id="Task_Disburse" name="Disburse Loan">
|
||||
<bpmn:incoming>Flow_Approved</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_5</bpmn:outgoing>
|
||||
</bpmn:serviceTask>
|
||||
<bpmn:sequenceFlow id="Flow_5" sourceRef="Task_Disburse" targetRef="EndEvent_Approved"/>
|
||||
|
||||
<bpmn:sendTask id="Task_Reject" name="Send Rejection Notice">
|
||||
<bpmn:incoming>Flow_Rejected</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_6</bpmn:outgoing>
|
||||
</bpmn:sendTask>
|
||||
<bpmn:sequenceFlow id="Flow_6" sourceRef="Task_Reject" targetRef="EndEvent_Rejected"/>
|
||||
|
||||
<bpmn:endEvent id="EndEvent_Approved" name="Loan Approved">
|
||||
<bpmn:incoming>Flow_5</bpmn:incoming>
|
||||
</bpmn:endEvent>
|
||||
|
||||
<bpmn:endEvent id="EndEvent_Rejected" name="Loan Rejected">
|
||||
<bpmn:incoming>Flow_6</bpmn:incoming>
|
||||
</bpmn:endEvent>
|
||||
</bpmn:process>
|
||||
|
||||
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
|
||||
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="LoanApplicationProcess">
|
||||
<bpmndi:BPMNShape id="StartEvent_1_di" bpmnElement="StartEvent_1">
|
||||
<dc:Bounds x="152" y="102" width="36" height="36"/>
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="134" y="145" width="73" height="27"/>
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Task_Validate_di" bpmnElement="Task_Validate">
|
||||
<dc:Bounds x="240" y="80" width="100" height="80"/>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Task_CheckCredit_di" bpmnElement="Task_CheckCredit">
|
||||
<dc:Bounds x="400" y="80" width="100" height="80"/>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Task_ApprovalDecision_di" bpmnElement="Task_ApprovalDecision">
|
||||
<dc:Bounds x="560" y="80" width="100" height="80"/>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Gateway_Approved_di" bpmnElement="Gateway_Approved" isMarkerVisible="true">
|
||||
<dc:Bounds x="715" y="95" width="50" height="50"/>
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="714" y="71" width="53" height="14"/>
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Task_Disburse_di" bpmnElement="Task_Disburse">
|
||||
<dc:Bounds x="820" y="80" width="100" height="80"/>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Task_Reject_di" bpmnElement="Task_Reject">
|
||||
<dc:Bounds x="690" y="200" width="100" height="80"/>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="EndEvent_Approved_di" bpmnElement="EndEvent_Approved">
|
||||
<dc:Bounds x="982" y="102" width="36" height="36"/>
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="963" y="145" width="74" height="14"/>
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="EndEvent_Rejected_di" bpmnElement="EndEvent_Rejected">
|
||||
<dc:Bounds x="862" y="222" width="36" height="36"/>
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="845" y="265" width="71" 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="400" y="120"/>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_3_di" bpmnElement="Flow_3">
|
||||
<di:waypoint x="500" y="120"/>
|
||||
<di:waypoint x="560" y="120"/>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_4_di" bpmnElement="Flow_4">
|
||||
<di:waypoint x="660" y="120"/>
|
||||
<di:waypoint x="715" y="120"/>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_Approved_di" bpmnElement="Flow_Approved">
|
||||
<di:waypoint x="765" y="120"/>
|
||||
<di:waypoint x="820" y="120"/>
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="783" y="102" width="19" height="14"/>
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_Rejected_di" bpmnElement="Flow_Rejected">
|
||||
<di:waypoint x="740" y="145"/>
|
||||
<di:waypoint x="740" y="200"/>
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="748" y="170" width="15" height="14"/>
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_5_di" bpmnElement="Flow_5">
|
||||
<di:waypoint x="920" y="120"/>
|
||||
<di:waypoint x="982" y="120"/>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_6_di" bpmnElement="Flow_6">
|
||||
<di:waypoint x="790" y="240"/>
|
||||
<di:waypoint x="862" y="240"/>
|
||||
</bpmndi:BPMNEdge>
|
||||
</bpmndi:BPMNPlane>
|
||||
</bpmndi:BPMNDiagram>
|
||||
</bpmn:definitions>
|
||||
Reference in New Issue
Block a user