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 | <?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" 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" xmlns:custom="http://example.com/custom" targetNamespace="http://example.com/managed-extension-lexical">
<process id="managedExtensionLexicalProcess" name="Managed Extension Lexical Process" isExecutable="true">
<startEvent id="start1" name="Start"/>
<serviceTask id="serviceTask1" name="Enrich" activiti:class="com.example.flowable.EnrichDelegate">
<extensionElements>
<activiti:field name="payloadTemplate">
<!-- field level comment -->
<activiti:string>{"status":"ready"}</activiti:string>
<custom:hint code="payload-json"/>
</activiti:field>
<activiti:field name="tenantExpression">
<activiti:expression>${tenantResolver.currentTenant()}</activiti:expression>
<!-- trailing field comment -->
</activiti:field>
</extensionElements>
<documentation>Service task with nested lexical content inside managed extension nodes.</documentation>
</serviceTask>
<endEvent id="end1" name="End"/>
<sequenceFlow id="flow1" sourceRef="start1" targetRef="serviceTask1"/>
<sequenceFlow id="flow2" sourceRef="serviceTask1" targetRef="end1"/>
</process>
<bpmndi:BPMNDiagram id="BPMNDiagram_managedExtensionLexicalProcess">
<bpmndi:BPMNPlane id="BPMNPlane_managedExtensionLexicalProcess" bpmnElement="managedExtensionLexicalProcess">
<bpmndi:BPMNShape id="BPMNShape_start1" bpmnElement="start1">
<omgdc:Bounds x="100" y="150" width="35" height="35"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="BPMNShape_serviceTask1" bpmnElement="serviceTask1">
<omgdc:Bounds x="190" y="140" width="120" height="55"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="BPMNShape_end1" bpmnElement="end1">
<omgdc:Bounds x="370" y="150" width="35" height="35"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="BPMNEdge_flow1" bpmnElement="flow1">
<omgdi:waypoint x="135" y="167"/>
<omgdi:waypoint x="190" y="167"/>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="BPMNEdge_flow2" bpmnElement="flow2">
<omgdi:waypoint x="310" y="167"/>
<omgdi:waypoint x="370" y="167"/>
</bpmndi:BPMNEdge>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</definitions> |