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 64 65 66 67 68 69 70 71 72 73 74 75 | <?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:xsd="http://www.w3.org/2001/XMLSchema"
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"
typeLanguage="http://www.w3.org/2001/XMLSchema"
expressionLanguage="http://www.w3.org/1999/XPath"
targetNamespace="http://www.activiti.org/test">
<process id="legacySubprocessProcess" name="Legacy Subprocess Process" isExecutable="true">
<startEvent id="startevent1" name="Start" />
<sequenceFlow id="flow1" sourceRef="startevent1" targetRef="subprocess1" />
<subProcess id="subprocess1" name="Review Subprocess">
<startEvent id="substartevent1" name="Sub Start" />
<sequenceFlow id="subflow1" sourceRef="substartevent1" targetRef="usertask1" />
<userTask id="usertask1" name="Review Request" activiti:assignee="${initiator}">
<documentation>Review the incoming request and approve or reject.</documentation>
</userTask>
<sequenceFlow id="subflow2" sourceRef="usertask1" targetRef="servicetask1" />
<serviceTask id="servicetask1" name="Process Review" activiti:class="com.example.flowable.ReviewDelegate" />
<sequenceFlow id="subflow3" sourceRef="servicetask1" targetRef="subendevent1" />
<endEvent id="subendevent1" name="Sub End" />
</subProcess>
<sequenceFlow id="flow2" sourceRef="subprocess1" targetRef="endevent1" />
<endEvent id="endevent1" name="End" />
</process>
<bpmndi:BPMNDiagram id="BPMNDiagram_legacySubprocessProcess">
<bpmndi:BPMNPlane bpmnElement="legacySubprocessProcess" id="BPMNPlane_legacySubprocessProcess">
<bpmndi:BPMNShape bpmnElement="startevent1" id="BPMNShape_startevent1">
<omgdc:Bounds height="35.0" width="35.0" x="90.0" y="250.0" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="subprocess1" id="BPMNShape_subprocess1" isExpanded="true">
<omgdc:Bounds height="200.0" width="460.0" x="210.0" y="168.0" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="substartevent1" id="BPMNShape_substartevent1">
<omgdc:Bounds height="35.0" width="35.0" x="230.0" y="250.0" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="usertask1" id="BPMNShape_usertask1">
<omgdc:Bounds height="55.0" width="135.0" x="310.0" y="240.0" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="servicetask1" id="BPMNShape_servicetask1">
<omgdc:Bounds height="55.0" width="135.0" x="490.0" y="240.0" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="subendevent1" id="BPMNShape_subendevent1">
<omgdc:Bounds height="35.0" width="35.0" x="640.0" y="250.0" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="endevent1" id="BPMNShape_endevent1">
<omgdc:Bounds height="35.0" width="35.0" x="750.0" y="250.0" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge bpmnElement="flow1" id="BPMNEdge_flow1">
<omgdi:waypoint x="125.0" y="267.0" />
<omgdi:waypoint x="210.0" y="267.0" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="subflow1" id="BPMNEdge_subflow1">
<omgdi:waypoint x="265.0" y="267.0" />
<omgdi:waypoint x="310.0" y="267.0" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="subflow2" id="BPMNEdge_subflow2">
<omgdi:waypoint x="445.0" y="267.0" />
<omgdi:waypoint x="490.0" y="267.0" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="subflow3" id="BPMNEdge_subflow3">
<omgdi:waypoint x="625.0" y="267.0" />
<omgdi:waypoint x="640.0" y="267.0" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="flow2" id="BPMNEdge_flow2">
<omgdi:waypoint x="670.0" y="267.0" />
<omgdi:waypoint x="750.0" y="267.0" />
</bpmndi:BPMNEdge>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</definitions>
|