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 | <?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:designer="http://activiti.org/designer/extensions"
xmlns:legacy="http://example.com/legacy"
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="legacyExtensionProcess" name="Legacy Extension Process" isExecutable="true">
<startEvent id="startevent1" name="Start" />
<serviceTask id="legacyServiceTask" name="Legacy Task" legacy:mode="strict" activiti:delegateExpression="${legacyDelegate}">
<extensionElements>
<designer:editor-language language="pl">Zadanie Legacy</designer:editor-language>
<legacy:customFlag enabled="true">legacy payload</legacy:customFlag>
</extensionElements>
</serviceTask>
<sequenceFlow id="flow1" sourceRef="startevent1" targetRef="legacyServiceTask" />
<endEvent id="endevent1" name="Done" />
<sequenceFlow id="flow2" sourceRef="legacyServiceTask" targetRef="endevent1" />
</process>
<bpmndi:BPMNDiagram id="BPMNDiagram_legacyExtensionProcess">
<bpmndi:BPMNPlane bpmnElement="legacyExtensionProcess" id="BPMNPlane_legacyExtensionProcess">
<bpmndi:BPMNShape bpmnElement="startevent1" id="BPMNShape_startevent1">
<omgdc:Bounds height="35.0" width="35.0" x="90.0" y="350.0" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="legacyServiceTask" id="BPMNShape_legacyServiceTask">
<omgdc:Bounds height="55.0" width="145.0" x="250.0" y="340.0" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="endevent1" id="BPMNShape_endevent1">
<omgdc:Bounds height="35.0" width="35.0" x="510.0" y="350.0" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge bpmnElement="flow1" id="BPMNEdge_flow1">
<omgdi:waypoint x="125.0" y="367.0" />
<omgdi:waypoint x="250.0" y="367.0" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="flow2" id="BPMNEdge_flow2">
<omgdi:waypoint x="395.0" y="367.0" />
<omgdi:waypoint x="510.0" y="367.0" />
</bpmndi:BPMNEdge>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</definitions> |