Advertisement
tillias

Untitled

Jul 16th, 2021
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.78 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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:camunda="http://camunda.org/schema/1.0/bpmn" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" xmlns:modeler="http://camunda.org/schema/modeler/1.0" id="Definitions_0mshho2" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="4.8.1" modeler:executionPlatform="Camunda Platform" modeler:executionPlatformVersion="7.15.0">
  3.   <bpmn:process id="Process_0og4hx0" name="Test Process" isExecutable="true" camunda:isStartableInTasklist="false">
  4.     <bpmn:startEvent id="StartEvent_1">
  5.       <bpmn:outgoing>Flow_0hb9tl2</bpmn:outgoing>
  6.     </bpmn:startEvent>
  7.     <bpmn:sequenceFlow id="Flow_0hb9tl2" sourceRef="StartEvent_1" targetRef="Activity_048x1tc" />
  8.     <bpmn:serviceTask id="Activity_048x1tc" name="Call some rest API">
  9.       <bpmn:extensionElements>
  10.         <camunda:connector>
  11.           <camunda:inputOutput>
  12.             <camunda:inputParameter name="method">GET</camunda:inputParameter>
  13.             <camunda:inputParameter name="url">https://reqres.in/api/users?page=2</camunda:inputParameter>
  14.           </camunda:inputOutput>
  15.           <camunda:connectorId>http-connector</camunda:connectorId>
  16.         </camunda:connector>
  17.       </bpmn:extensionElements>
  18.       <bpmn:incoming>Flow_0hb9tl2</bpmn:incoming>
  19.       <bpmn:outgoing>Flow_0ura4gu</bpmn:outgoing>
  20.     </bpmn:serviceTask>
  21.     <bpmn:endEvent id="Event_1xhi1at">
  22.       <bpmn:incoming>Flow_0ura4gu</bpmn:incoming>
  23.     </bpmn:endEvent>
  24.     <bpmn:sequenceFlow id="Flow_0ura4gu" sourceRef="Activity_048x1tc" targetRef="Event_1xhi1at" />
  25.   </bpmn:process>
  26.   <bpmndi:BPMNDiagram id="BPMNDiagram_1">
  27.     <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="Process_0og4hx0">
  28.       <bpmndi:BPMNEdge id="Flow_0ura4gu_di" bpmnElement="Flow_0ura4gu">
  29.         <di:waypoint x="370" y="117" />
  30.         <di:waypoint x="432" y="117" />
  31.       </bpmndi:BPMNEdge>
  32.       <bpmndi:BPMNEdge id="Flow_0hb9tl2_di" bpmnElement="Flow_0hb9tl2">
  33.         <di:waypoint x="215" y="117" />
  34.         <di:waypoint x="270" y="117" />
  35.       </bpmndi:BPMNEdge>
  36.       <bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="StartEvent_1">
  37.         <dc:Bounds x="179" y="99" width="36" height="36" />
  38.       </bpmndi:BPMNShape>
  39.       <bpmndi:BPMNShape id="Activity_0sovrbc_di" bpmnElement="Activity_048x1tc">
  40.         <dc:Bounds x="270" y="77" width="100" height="80" />
  41.       </bpmndi:BPMNShape>
  42.       <bpmndi:BPMNShape id="Event_1xhi1at_di" bpmnElement="Event_1xhi1at">
  43.         <dc:Bounds x="432" y="99" width="36" height="36" />
  44.       </bpmndi:BPMNShape>
  45.     </bpmndi:BPMNPlane>
  46.   </bpmndi:BPMNDiagram>
  47. </bpmn:definitions>
  48.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement