Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | <?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:activiti="http://activiti.org/bpmn" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:omgdc="http://www.omg.org/spec/DD/20100524/DC" xmlns:omgdi="http://www.omg.org/spec/DD/20100524/DI" targetNamespace="http://www.activiti.org/processdef" id="definitions1">
<collaboration id="collaboration1">
<participant id="pool1" name="Order Pool" processRef="poolProcess"></participant>
</collaboration>
<process id="poolProcess" name="Pool Process" isExecutable="true">
<laneSet id="laneSet1">
<lane id="lane1" name="Manager Lane">
<flowNodeRef>startEvent1</flowNodeRef>
<flowNodeRef>approveTask</flowNodeRef>
</lane>
<lane id="lane2" name="Worker Lane">
<flowNodeRef>executeTask</flowNodeRef>
<flowNodeRef>endEvent1</flowNodeRef>
</lane>
</laneSet>
<startEvent id="startEvent1" name="Start"></startEvent>
<userTask id="approveTask" name="Approve" activiti:assignee="manager"></userTask>
<serviceTask id="executeTask" name="Execute" activiti:class="com.example.Executor"></serviceTask>
<endEvent id="endEvent1" name="End"></endEvent>
<sequenceFlow id="flow1" sourceRef="startEvent1" targetRef="approveTask"></sequenceFlow>
<sequenceFlow id="flow2" sourceRef="approveTask" targetRef="executeTask"></sequenceFlow>
<sequenceFlow id="flow3" sourceRef="executeTask" targetRef="endEvent1"></sequenceFlow>
</process>
<bpmndi:BPMNDiagram id="BPMNDiagram_poolProcess">
<bpmndi:BPMNPlane bpmnElement="collaboration1" id="BPMNPlane_poolProcess">
<bpmndi:BPMNShape bpmnElement="pool1" id="BPMNShape_pool1" isHorizontal="true">
<omgdc:Bounds height="250.0" width="600.0" x="50.0" y="50.0"></omgdc:Bounds>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="lane1" id="BPMNShape_lane1" isHorizontal="true">
<omgdc:Bounds height="125.0" width="580.0" x="70.0" y="50.0"></omgdc:Bounds>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="lane2" id="BPMNShape_lane2" isHorizontal="true">
<omgdc:Bounds height="125.0" width="580.0" x="70.0" y="175.0"></omgdc:Bounds>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="startEvent1" id="BPMNShape_startEvent1">
<omgdc:Bounds height="30.0" width="30.0" x="120.0" y="93.0"></omgdc:Bounds>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="approveTask" id="BPMNShape_approveTask">
<omgdc:Bounds height="55.0" width="100.0" x="230.0" y="83.0"></omgdc:Bounds>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="executeTask" id="BPMNShape_executeTask">
<omgdc:Bounds height="55.0" width="100.0" x="230.0" y="210.0"></omgdc:Bounds>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="endEvent1" id="BPMNShape_endEvent1">
<omgdc:Bounds height="30.0" width="30.0" x="400.0" y="222.0"></omgdc:Bounds>
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge bpmnElement="flow1" id="BPMNEdge_flow1">
<omgdi:waypoint x="150.0" y="108.0"/>
<omgdi:waypoint x="230.0" y="110.5"/>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="flow2" id="BPMNEdge_flow2">
<omgdi:waypoint x="280.0" y="138.0"/>
<omgdi:waypoint x="280.0" y="210.0"/>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="flow3" id="BPMNEdge_flow3">
<omgdi:waypoint x="330.0" y="237.5"/>
<omgdi:waypoint x="400.0" y="237.0"/>
</bpmndi:BPMNEdge>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</definitions>
|