@5minds/node-red-contrib-processcube 1.9.3-develop-c9db83-m8k3pb8w → 1.9.3-develop-6cf3d1-m8mrrpqs

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/externaltask-input.js +2 -6
  2. package/package.json +1 -1
  3. package/.github/workflows/build-and-publish.yml +0 -72
  4. package/.processcube/authority/config/config.json +0 -36
  5. package/.processcube/authority/config/upeSeedingData.json +0 -12
  6. package/.processcube/engine/config/config.json +0 -17
  7. package/.processcube/nodered/.config.nodes.json +0 -658
  8. package/.processcube/nodered/.config.runtime.json +0 -3
  9. package/.processcube/nodered/.config.users.json +0 -31
  10. package/.processcube/nodered/config.js +0 -20
  11. package/.processcube/nodered/flows.json +0 -3349
  12. package/.processcube/nodered/flows_cred.json +0 -3
  13. package/.processcube/nodered/package-lock.json +0 -5169
  14. package/.processcube/nodered/package.json +0 -6
  15. package/.processcube/nodered/settings.js +0 -562
  16. package/.processcube/nodered/static/ProcessCube_Logo.svg +0 -53
  17. package/DEVELOPMENT.md +0 -16
  18. package/Dockerfile +0 -22
  19. package/doc_generator/README.md +0 -6
  20. package/doc_generator/_process_instances_query.md +0 -121
  21. package/doc_generator/generator.js +0 -41
  22. package/doc_generator/generator_with_swagger.js +0 -89
  23. package/doc_generator/outputs/.gitkeep +0 -0
  24. package/doc_generator/package-lock.json +0 -176
  25. package/doc_generator/package.json +0 -15
  26. package/doc_generator/query_template.mustache +0 -20
  27. package/doc_generator/swagger.json +0 -4110
  28. package/docker-compose.yml +0 -78
  29. package/postgres/init.sql +0 -13
  30. package/processes/Call-Activity-Sample.bpmn +0 -88
  31. package/processes/External-Task-Auth-Sample.bpmn +0 -82
  32. package/processes/External-Task-Env-Topic.bpmn +0 -57
  33. package/processes/External-Task-Sample.bpmn +0 -122
  34. package/processes/ProcessModelToDeploy.bpmn +0 -58
  35. package/processes/SampleEvent.bpmn +0 -73
  36. package/processes/SimpleExternalTask.bpmn +0 -52
  37. package/processes/StartProcessSample.bpmn +0 -54
  38. package/processes/TriggerMessageEvent.bpmn +0 -79
  39. package/processes/User-Task-Auth-Sample.bpmn +0 -63
  40. package/processes/User-Task-Sample.bpmn +0 -76
  41. package/processes/Wait-For-Usertask.bpmn +0 -74
@@ -1,78 +0,0 @@
1
- services:
2
- node-red:
3
- image: 5minds/node-red:node-red-contrib-processcube-4
4
- build:
5
- context: .
6
- ports:
7
- # node-red port
8
- - 1880:1880
9
- # debugger port
10
- - 9229:9229
11
- environment:
12
- - TZ=Europe/Berlin
13
- - ENGINE_URL=http://engine:8000
14
- - TOPIC=TopicFromENV
15
- # start node-red with debugger port open
16
- - NODE_OPTIONS=--inspect=0.0.0.0:9229
17
- - NODE_RED_ETW_HEARTBEAT_LOGGING=false
18
- - NODE_RED_ETW_STEP_LOGGING=true
19
- - NODE_RED_ETW_STOP_IF_FAILED=true
20
- volumes:
21
- # required for mapping the current source into the directory
22
- - ./.:/package_src/
23
- # save the flows
24
- - ./.processcube/nodered:/data
25
- depends_on:
26
- - engine
27
- - authority
28
-
29
- engine:
30
- image: 5minds/processcube_engine:2024-1
31
- #image: 5minds/processcube_engine:17.1.2
32
- ports:
33
- - 8000:8000
34
- volumes:
35
- - ./.processcube/engine/config/config.json:/etc/engine/config/config.json:ro
36
- - ./processes:/processes:ro
37
- environment:
38
- CONFIG_PATH: /etc/engine/config/config.json
39
- application__name: Engine for Node-RED contrib
40
- iam__baseUrl: http://authority:11560
41
- iam__allowAnonymousRootAccess: true
42
- command: --seed-dir=/processes --port 8000
43
- depends_on:
44
- - authority
45
- healthcheck:
46
- test: bash -c "[ -f /tmp/healthy ]"
47
- timeout: 1s
48
- retries: 20
49
-
50
- postgres:
51
- image: postgres
52
- environment:
53
- POSTGRES_USER: ${POSTGRES_USER:-postgres}
54
- POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-postgres}
55
- POSTGRES_DB: enginedb
56
- PGDATA: /data/postgres/db
57
- volumes:
58
- - ./postgres/init.sql:/docker-entrypoint-initdb.d/init.sql:ro
59
- - ./postgres/db.instance:/data/postgres
60
- ports:
61
- - 5432:5432
62
- healthcheck:
63
- test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER:-postgres}"]
64
- interval: 5s
65
- retries: 10
66
- timeout: 10s
67
- restart: unless-stopped
68
-
69
-
70
- authority:
71
- image: 5minds/processcube_authority:3.0.4
72
- ports:
73
- - 11560:11560
74
- volumes:
75
- - ./.processcube/authority/config:/etc/authority/config:ro
76
- - ./.processcube/authority/db:/app/authority/storage/
77
- environment:
78
- UPE_SEED_PATH: /etc/authority/config/upeSeedingData.json
package/postgres/init.sql DELETED
@@ -1,13 +0,0 @@
1
- CREATE USER engine_user with password 'enigne_password';
2
- CREATE DATABASE engine_db;
3
- GRANT ALL PRIVILEGES ON DATABASE engine_db TO engine_user;
4
-
5
- \connect engine_db;
6
-
7
- -- Berechtigungen erteilen
8
- GRANT CREATE ON SCHEMA public TO engine_user;
9
-
10
- -- Eigentümer des Schemas ändern
11
- ALTER SCHEMA public OWNER TO engine_user;
12
-
13
-
@@ -1,88 +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:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="Call-Activity-Sample_Definition" targetNamespace="http://bpmn.io/schema/bpmn" exporter="5Minds Studio" exporterVersion="1">
3
- <bpmn:collaboration id="Collaboration_1cidyxu" name="">
4
- <bpmn:participant id="Participant_0px403d" name="Call-Activity-Sample" processRef="Call-Activity-Sample_Process" />
5
- </bpmn:collaboration>
6
- <bpmn:process id="Call-Activity-Sample_Process" name="Call-Activity-Sample" isExecutable="true">
7
- <bpmn:laneSet>
8
- <bpmn:lane id="Lane_1xzf0d3" name="Lane">
9
- <bpmn:flowNodeRef>StartEvent_1</bpmn:flowNodeRef>
10
- <bpmn:flowNodeRef>Activity_1483lxt</bpmn:flowNodeRef>
11
- <bpmn:flowNodeRef>Event_051opo1</bpmn:flowNodeRef>
12
- <bpmn:flowNodeRef>Activity_1m883u3</bpmn:flowNodeRef>
13
- </bpmn:lane>
14
- </bpmn:laneSet>
15
- <bpmn:startEvent id="StartEvent_1" name="Start">
16
- <bpmn:outgoing>Flow_0jchwpf</bpmn:outgoing>
17
- </bpmn:startEvent>
18
- <bpmn:sequenceFlow id="Flow_0jchwpf" sourceRef="StartEvent_1" targetRef="Activity_1483lxt" />
19
- <bpmn:scriptTask id="Activity_1483lxt" name="make multi">
20
- <bpmn:incoming>Flow_0jchwpf</bpmn:incoming>
21
- <bpmn:outgoing>Flow_1kbc11o</bpmn:outgoing>
22
- <bpmn:script>const data = [
23
- {
24
- "uid": 14200
25
- },
26
- {
27
- "uid": 14201
28
- }
29
- ];
30
-
31
- return data;</bpmn:script>
32
- </bpmn:scriptTask>
33
- <bpmn:sequenceFlow id="Flow_1kbc11o" sourceRef="Activity_1483lxt" targetRef="Activity_1m883u3" />
34
- <bpmn:endEvent id="Event_051opo1">
35
- <bpmn:incoming>Flow_0pjaqpi</bpmn:incoming>
36
- </bpmn:endEvent>
37
- <bpmn:sequenceFlow id="Flow_0pjaqpi" sourceRef="Activity_1m883u3" targetRef="Event_051opo1" />
38
- <bpmn:callActivity id="Activity_1m883u3" name="call sub" calledElement="External-Task-Sample_Process">
39
- <bpmn:extensionElements>
40
- <camunda:properties>
41
- <camunda:property name="startEventId" value="StartEvent_1" />
42
- </camunda:properties>
43
- </bpmn:extensionElements>
44
- <bpmn:incoming>Flow_1kbc11o</bpmn:incoming>
45
- <bpmn:outgoing>Flow_0pjaqpi</bpmn:outgoing>
46
- <bpmn:multiInstanceLoopCharacteristics />
47
- </bpmn:callActivity>
48
- </bpmn:process>
49
- <bpmndi:BPMNDiagram id="BPMNDiagram_1">
50
- <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="Collaboration_1cidyxu">
51
- <bpmndi:BPMNShape id="Participant_0px403d_di" bpmnElement="Participant_0px403d" isHorizontal="true">
52
- <dc:Bounds x="5" y="4" width="885" height="346" />
53
- </bpmndi:BPMNShape>
54
- <bpmndi:BPMNShape id="Lane_1xzf0d3_di" bpmnElement="Lane_1xzf0d3" isHorizontal="true">
55
- <dc:Bounds x="35" y="4" width="855" height="346" />
56
- </bpmndi:BPMNShape>
57
- <bpmndi:BPMNShape id="StartEvent_1_di" bpmnElement="StartEvent_1">
58
- <dc:Bounds x="92" y="152" width="36" height="36" />
59
- <bpmndi:BPMNLabel>
60
- <dc:Bounds x="98" y="195" width="24" height="14" />
61
- </bpmndi:BPMNLabel>
62
- </bpmndi:BPMNShape>
63
- <bpmndi:BPMNShape id="Activity_0uc2tzt_di" bpmnElement="Activity_1483lxt">
64
- <dc:Bounds x="180" y="130" width="100" height="80" />
65
- <bpmndi:BPMNLabel />
66
- </bpmndi:BPMNShape>
67
- <bpmndi:BPMNShape id="Event_051opo1_di" bpmnElement="Event_051opo1">
68
- <dc:Bounds x="502" y="152" width="36" height="36" />
69
- </bpmndi:BPMNShape>
70
- <bpmndi:BPMNShape id="Activity_0t5p0pc_di" bpmnElement="Activity_1m883u3">
71
- <dc:Bounds x="340" y="130" width="100" height="80" />
72
- <bpmndi:BPMNLabel />
73
- </bpmndi:BPMNShape>
74
- <bpmndi:BPMNEdge id="Flow_0jchwpf_di" bpmnElement="Flow_0jchwpf">
75
- <di:waypoint x="128" y="170" />
76
- <di:waypoint x="180" y="170" />
77
- </bpmndi:BPMNEdge>
78
- <bpmndi:BPMNEdge id="Flow_1kbc11o_di" bpmnElement="Flow_1kbc11o">
79
- <di:waypoint x="280" y="170" />
80
- <di:waypoint x="340" y="170" />
81
- </bpmndi:BPMNEdge>
82
- <bpmndi:BPMNEdge id="Flow_0pjaqpi_di" bpmnElement="Flow_0pjaqpi">
83
- <di:waypoint x="440" y="170" />
84
- <di:waypoint x="502" y="170" />
85
- </bpmndi:BPMNEdge>
86
- </bpmndi:BPMNPlane>
87
- </bpmndi:BPMNDiagram>
88
- </bpmn:definitions>
@@ -1,82 +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:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="External-Task-Auth-Sample_Definition" targetNamespace="http://bpmn.io/schema/bpmn" exporter="5Minds Studio" exporterVersion="1">
3
- <bpmn:collaboration id="Collaboration_1cidyxu" name="">
4
- <bpmn:participant id="Participant_0px403d" name="External-Task-Auth-Sample" processRef="External-Task-Auth-Sample_Process" />
5
- </bpmn:collaboration>
6
- <bpmn:process id="External-Task-Auth-Sample_Process" name="External-Task-Auth-Sample" isExecutable="true">
7
- <bpmn:laneSet />
8
- <bpmn:startEvent id="StartEvent_1" name="Start">
9
- <bpmn:outgoing>Flow_1ld6sfg</bpmn:outgoing>
10
- </bpmn:startEvent>
11
- <bpmn:sequenceFlow id="Flow_1ld6sfg" sourceRef="StartEvent_1" targetRef="Activity_0u64tc3" />
12
- <bpmn:sequenceFlow id="Flow_06m00cc" sourceRef="Activity_0u64tc3" targetRef="Activity_07p3p4z" />
13
- <bpmn:endEvent id="Event_1itn9nv">
14
- <bpmn:incoming>Flow_1m5vjpz</bpmn:incoming>
15
- </bpmn:endEvent>
16
- <bpmn:sequenceFlow id="Flow_1m5vjpz" sourceRef="Activity_07p3p4z" targetRef="Event_1itn9nv" />
17
- <bpmn:sequenceFlow id="Flow_0ltw0h7" sourceRef="Event_0fz5x27" targetRef="Event_0rv3086" />
18
- <bpmn:endEvent id="Event_0rv3086">
19
- <bpmn:incoming>Flow_0ltw0h7</bpmn:incoming>
20
- </bpmn:endEvent>
21
- <bpmn:serviceTask id="Activity_0u64tc3" name="Topic: &#34;Test_Auth&#34;" camunda:type="external" camunda:topic="Test_Auth">
22
- <bpmn:incoming>Flow_1ld6sfg</bpmn:incoming>
23
- <bpmn:outgoing>Flow_06m00cc</bpmn:outgoing>
24
- </bpmn:serviceTask>
25
- <bpmn:serviceTask id="Activity_07p3p4z" name="Topic: &#34;SampleError_Auth&#34;" camunda:type="external" camunda:topic="SampleError_Auth">
26
- <bpmn:incoming>Flow_06m00cc</bpmn:incoming>
27
- <bpmn:outgoing>Flow_1m5vjpz</bpmn:outgoing>
28
- </bpmn:serviceTask>
29
- <bpmn:boundaryEvent id="Event_0fz5x27" attachedToRef="Activity_07p3p4z">
30
- <bpmn:outgoing>Flow_0ltw0h7</bpmn:outgoing>
31
- <bpmn:errorEventDefinition id="ErrorEventDefinition_1owejc3" errorRef="Error_tYBTV3t5" />
32
- </bpmn:boundaryEvent>
33
- </bpmn:process>
34
- <bpmn:error id="Error_tYBTV3t5" errorCode="MyErrorCode" />
35
- <bpmndi:BPMNDiagram id="BPMNDiagram_1">
36
- <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="Collaboration_1cidyxu">
37
- <bpmndi:BPMNShape id="Participant_0px403d_di" bpmnElement="Participant_0px403d" isHorizontal="true">
38
- <dc:Bounds x="5" y="4" width="655" height="346" />
39
- </bpmndi:BPMNShape>
40
- <bpmndi:BPMNShape id="StartEvent_1_di" bpmnElement="StartEvent_1">
41
- <dc:Bounds x="92" y="152" width="36" height="36" />
42
- <bpmndi:BPMNLabel>
43
- <dc:Bounds x="98" y="195" width="24" height="14" />
44
- </bpmndi:BPMNLabel>
45
- </bpmndi:BPMNShape>
46
- <bpmndi:BPMNShape id="Event_1itn9nv_di" bpmnElement="Event_1itn9nv">
47
- <dc:Bounds x="502" y="152" width="36" height="36" />
48
- </bpmndi:BPMNShape>
49
- <bpmndi:BPMNShape id="Event_0rv3086_di" bpmnElement="Event_0rv3086">
50
- <dc:Bounds x="502" y="272" width="36" height="36" />
51
- </bpmndi:BPMNShape>
52
- <bpmndi:BPMNShape id="Activity_1yv65fq_di" bpmnElement="Activity_0u64tc3">
53
- <dc:Bounds x="180" y="130" width="100" height="80" />
54
- <bpmndi:BPMNLabel />
55
- </bpmndi:BPMNShape>
56
- <bpmndi:BPMNShape id="Activity_1dgy0dm_di" bpmnElement="Activity_07p3p4z">
57
- <dc:Bounds x="340" y="130" width="100" height="80" />
58
- <bpmndi:BPMNLabel />
59
- </bpmndi:BPMNShape>
60
- <bpmndi:BPMNShape id="Event_1is2r7x_di" bpmnElement="Event_0fz5x27">
61
- <dc:Bounds x="372" y="192" width="36" height="36" />
62
- </bpmndi:BPMNShape>
63
- <bpmndi:BPMNEdge id="Flow_1ld6sfg_di" bpmnElement="Flow_1ld6sfg">
64
- <di:waypoint x="128" y="170" />
65
- <di:waypoint x="180" y="170" />
66
- </bpmndi:BPMNEdge>
67
- <bpmndi:BPMNEdge id="Flow_06m00cc_di" bpmnElement="Flow_06m00cc">
68
- <di:waypoint x="280" y="170" />
69
- <di:waypoint x="340" y="170" />
70
- </bpmndi:BPMNEdge>
71
- <bpmndi:BPMNEdge id="Flow_1m5vjpz_di" bpmnElement="Flow_1m5vjpz">
72
- <di:waypoint x="440" y="170" />
73
- <di:waypoint x="502" y="170" />
74
- </bpmndi:BPMNEdge>
75
- <bpmndi:BPMNEdge id="Flow_0ltw0h7_di" bpmnElement="Flow_0ltw0h7">
76
- <di:waypoint x="390" y="228" />
77
- <di:waypoint x="390" y="290" />
78
- <di:waypoint x="502" y="290" />
79
- </bpmndi:BPMNEdge>
80
- </bpmndi:BPMNPlane>
81
- </bpmndi:BPMNDiagram>
82
- </bpmn:definitions>
@@ -1,57 +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:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="External-Task-Env-Topic_Definition" targetNamespace="http://bpmn.io/schema/bpmn" exporter="5Minds Studio" exporterVersion="1">
3
- <bpmn:collaboration id="Collaboration_1cidyxu" name="">
4
- <bpmn:participant id="Participant_0px403d" name="External-Task-Env-Topic" processRef="External-Task-Env-Topic_Process" />
5
- </bpmn:collaboration>
6
- <bpmn:process id="External-Task-Env-Topic_Process" name="External-Task-Env-Topic" isExecutable="true">
7
- <bpmn:laneSet>
8
- <bpmn:lane id="Lane_1xzf0d3">
9
- <bpmn:flowNodeRef>StartEvent_1</bpmn:flowNodeRef>
10
- <bpmn:flowNodeRef>Event_0altset</bpmn:flowNodeRef>
11
- <bpmn:flowNodeRef>Activity_0oql7b5</bpmn:flowNodeRef>
12
- </bpmn:lane>
13
- </bpmn:laneSet>
14
- <bpmn:startEvent id="StartEvent_1" name="Start">
15
- <bpmn:outgoing>Flow_1y2qxv2</bpmn:outgoing>
16
- </bpmn:startEvent>
17
- <bpmn:sequenceFlow id="Flow_1y2qxv2" sourceRef="StartEvent_1" targetRef="Activity_0oql7b5" />
18
- <bpmn:endEvent id="Event_0altset">
19
- <bpmn:incoming>Flow_01qqshn</bpmn:incoming>
20
- </bpmn:endEvent>
21
- <bpmn:sequenceFlow id="Flow_01qqshn" sourceRef="Activity_0oql7b5" targetRef="Event_0altset" />
22
- <bpmn:serviceTask id="Activity_0oql7b5" name="External Task with topic from ENV" camunda:type="external" camunda:topic="TopicFromENV">
23
- <bpmn:incoming>Flow_1y2qxv2</bpmn:incoming>
24
- <bpmn:outgoing>Flow_01qqshn</bpmn:outgoing>
25
- </bpmn:serviceTask>
26
- </bpmn:process>
27
- <bpmndi:BPMNDiagram id="BPMNDiagram_1">
28
- <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="Collaboration_1cidyxu">
29
- <bpmndi:BPMNShape id="Participant_0px403d_di" bpmnElement="Participant_0px403d" isHorizontal="true">
30
- <dc:Bounds x="5" y="4" width="885" height="346" />
31
- </bpmndi:BPMNShape>
32
- <bpmndi:BPMNShape id="Lane_1xzf0d3_di" bpmnElement="Lane_1xzf0d3" isHorizontal="true">
33
- <dc:Bounds x="35" y="4" width="855" height="346" />
34
- </bpmndi:BPMNShape>
35
- <bpmndi:BPMNShape id="StartEvent_1_di" bpmnElement="StartEvent_1">
36
- <dc:Bounds x="92" y="152" width="36" height="36" />
37
- <bpmndi:BPMNLabel>
38
- <dc:Bounds x="98" y="195" width="24" height="14" />
39
- </bpmndi:BPMNLabel>
40
- </bpmndi:BPMNShape>
41
- <bpmndi:BPMNShape id="Event_0altset_di" bpmnElement="Event_0altset">
42
- <dc:Bounds x="332" y="152" width="36" height="36" />
43
- </bpmndi:BPMNShape>
44
- <bpmndi:BPMNShape id="Activity_1hcksxj_di" bpmnElement="Activity_0oql7b5">
45
- <dc:Bounds x="180" y="130" width="100" height="80" />
46
- </bpmndi:BPMNShape>
47
- <bpmndi:BPMNEdge id="Flow_1y2qxv2_di" bpmnElement="Flow_1y2qxv2">
48
- <di:waypoint x="128" y="170" />
49
- <di:waypoint x="180" y="170" />
50
- </bpmndi:BPMNEdge>
51
- <bpmndi:BPMNEdge id="Flow_01qqshn_di" bpmnElement="Flow_01qqshn">
52
- <di:waypoint x="280" y="170" />
53
- <di:waypoint x="332" y="170" />
54
- </bpmndi:BPMNEdge>
55
- </bpmndi:BPMNPlane>
56
- </bpmndi:BPMNDiagram>
57
- </bpmn:definitions>
@@ -1,122 +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:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="External-Task-Sample_Definition" targetNamespace="http://bpmn.io/schema/bpmn" exporter="5Minds Studio" exporterVersion="1">
3
- <bpmn:collaboration id="Collaboration_1cidyxu" name="">
4
- <bpmn:participant id="Participant_0px403d" name="External-Task-Sample" processRef="External-Task-Sample_Process" />
5
- <bpmn:textAnnotation id="TextAnnotation_0lbjt7p">
6
- <bpmn:text>Will be executed at the boundary event</bpmn:text>
7
- </bpmn:textAnnotation>
8
- <bpmn:association id="Association_0ivfgz1" associationDirection="None" sourceRef="Activity_0ma3kzt" targetRef="TextAnnotation_0lbjt7p" />
9
- </bpmn:collaboration>
10
- <bpmn:process id="External-Task-Sample_Process" name="External-Task-Sample" isExecutable="true">
11
- <bpmn:laneSet />
12
- <bpmn:sequenceFlow id="Flow_0qmxzxk" sourceRef="StartEvent_1" targetRef="Activity_02ykwt2" />
13
- <bpmn:sequenceFlow id="Flow_16dfeac" sourceRef="Activity_02ykwt2" targetRef="Activity_0ma3kzt" />
14
- <bpmn:endEvent id="Event_05wpeos">
15
- <bpmn:incoming>Flow_0mo4oek</bpmn:incoming>
16
- </bpmn:endEvent>
17
- <bpmn:sequenceFlow id="Flow_0mo4oek" sourceRef="Activity_0ma3kzt" targetRef="Event_05wpeos" />
18
- <bpmn:endEvent id="Event_0yn9mzh">
19
- <bpmn:incoming>Flow_0y6es1p</bpmn:incoming>
20
- </bpmn:endEvent>
21
- <bpmn:sequenceFlow id="Flow_0y6es1p" sourceRef="Event_0o7qlkd" targetRef="Event_0yn9mzh" />
22
- <bpmn:serviceTask id="Activity_02ykwt2" name="Topic &#34;Test&#34;" camunda:type="external" camunda:topic="Test">
23
- <bpmn:incoming>Flow_0qmxzxk</bpmn:incoming>
24
- <bpmn:outgoing>Flow_16dfeac</bpmn:outgoing>
25
- </bpmn:serviceTask>
26
- <bpmn:serviceTask id="Activity_0ma3kzt" name="Topic &#34;SampleError&#34;" camunda:type="external" camunda:topic="SampleError">
27
- <bpmn:incoming>Flow_16dfeac</bpmn:incoming>
28
- <bpmn:outgoing>Flow_0mo4oek</bpmn:outgoing>
29
- </bpmn:serviceTask>
30
- <bpmn:boundaryEvent id="Event_0o7qlkd" attachedToRef="Activity_0ma3kzt">
31
- <bpmn:outgoing>Flow_0y6es1p</bpmn:outgoing>
32
- <bpmn:errorEventDefinition id="ErrorEventDefinition_1lr8fha" errorRef="Error_3O8wBFQi" />
33
- </bpmn:boundaryEvent>
34
- <bpmn:endEvent id="Event_0rs3geg">
35
- <bpmn:incoming>Flow_1fsn04u</bpmn:incoming>
36
- </bpmn:endEvent>
37
- <bpmn:sequenceFlow id="Flow_1fsn04u" sourceRef="Event_007u06e" targetRef="Event_0rs3geg" />
38
- <bpmn:boundaryEvent id="Event_007u06e" attachedToRef="Activity_02ykwt2">
39
- <bpmn:outgoing>Flow_1fsn04u</bpmn:outgoing>
40
- <bpmn:errorEventDefinition id="ErrorEventDefinition_0kojqkb" errorRef="Error_TrRFOiMy" />
41
- </bpmn:boundaryEvent>
42
- <bpmn:startEvent id="StartEvent_1" name="Start">
43
- <bpmn:extensionElements>
44
- <camunda:properties>
45
- <camunda:property name="enabled" value="true" />
46
- </camunda:properties>
47
- </bpmn:extensionElements>
48
- <bpmn:outgoing>Flow_0qmxzxk</bpmn:outgoing>
49
- <bpmn:timerEventDefinition id="TimerEventDefinition_02zdsh9">
50
- <bpmn:timeCycle xsi:type="bpmn:tFormalExpression">*/5 * * * * *</bpmn:timeCycle>
51
- </bpmn:timerEventDefinition>
52
- </bpmn:startEvent>
53
- </bpmn:process>
54
- <bpmn:error id="Error_3O8wBFQi" errorCode="MyErrorCode" />
55
- <bpmn:error id="Error_TrRFOiMy" errorCode="handleSubFlowError" />
56
- <bpmndi:BPMNDiagram id="BPMNDiagram_1">
57
- <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="Collaboration_1cidyxu">
58
- <bpmndi:BPMNShape id="Participant_0px403d_di" bpmnElement="Participant_0px403d" isHorizontal="true">
59
- <dc:Bounds x="5" y="30" width="635" height="320" />
60
- </bpmndi:BPMNShape>
61
- <bpmndi:BPMNShape id="Event_05wpeos_di" bpmnElement="Event_05wpeos">
62
- <dc:Bounds x="502" y="152" width="36" height="36" />
63
- </bpmndi:BPMNShape>
64
- <bpmndi:BPMNShape id="Event_0yn9mzh_di" bpmnElement="Event_0yn9mzh">
65
- <dc:Bounds x="482" y="272" width="36" height="36" />
66
- </bpmndi:BPMNShape>
67
- <bpmndi:BPMNShape id="Activity_1vxcs04_di" bpmnElement="Activity_02ykwt2">
68
- <dc:Bounds x="180" y="130" width="100" height="80" />
69
- <bpmndi:BPMNLabel />
70
- </bpmndi:BPMNShape>
71
- <bpmndi:BPMNShape id="Activity_1b7fiqp_di" bpmnElement="Activity_0ma3kzt">
72
- <dc:Bounds x="340" y="130" width="100" height="80" />
73
- <bpmndi:BPMNLabel />
74
- </bpmndi:BPMNShape>
75
- <bpmndi:BPMNShape id="Event_0rs3geg_di" bpmnElement="Event_0rs3geg">
76
- <dc:Bounds x="312" y="272" width="36" height="36" />
77
- </bpmndi:BPMNShape>
78
- <bpmndi:BPMNShape id="Event_00jrf2t_di" bpmnElement="StartEvent_1">
79
- <dc:Bounds x="92" y="152" width="36" height="36" />
80
- <bpmndi:BPMNLabel>
81
- <dc:Bounds x="98" y="195" width="24" height="14" />
82
- </bpmndi:BPMNLabel>
83
- </bpmndi:BPMNShape>
84
- <bpmndi:BPMNShape id="Event_03ytp91_di" bpmnElement="Event_007u06e">
85
- <dc:Bounds x="222" y="192" width="36" height="36" />
86
- </bpmndi:BPMNShape>
87
- <bpmndi:BPMNShape id="Event_134k5nt_di" bpmnElement="Event_0o7qlkd">
88
- <dc:Bounds x="392" y="192" width="36" height="36" />
89
- </bpmndi:BPMNShape>
90
- <bpmndi:BPMNEdge id="Flow_0qmxzxk_di" bpmnElement="Flow_0qmxzxk">
91
- <di:waypoint x="128" y="170" />
92
- <di:waypoint x="180" y="170" />
93
- </bpmndi:BPMNEdge>
94
- <bpmndi:BPMNEdge id="Flow_16dfeac_di" bpmnElement="Flow_16dfeac">
95
- <di:waypoint x="280" y="170" />
96
- <di:waypoint x="340" y="170" />
97
- </bpmndi:BPMNEdge>
98
- <bpmndi:BPMNEdge id="Flow_0mo4oek_di" bpmnElement="Flow_0mo4oek">
99
- <di:waypoint x="440" y="170" />
100
- <di:waypoint x="502" y="170" />
101
- </bpmndi:BPMNEdge>
102
- <bpmndi:BPMNEdge id="Flow_0y6es1p_di" bpmnElement="Flow_0y6es1p">
103
- <di:waypoint x="410" y="228" />
104
- <di:waypoint x="410" y="290" />
105
- <di:waypoint x="482" y="290" />
106
- </bpmndi:BPMNEdge>
107
- <bpmndi:BPMNEdge id="Flow_1fsn04u_di" bpmnElement="Flow_1fsn04u">
108
- <di:waypoint x="240" y="228" />
109
- <di:waypoint x="240" y="290" />
110
- <di:waypoint x="312" y="290" />
111
- </bpmndi:BPMNEdge>
112
- <bpmndi:BPMNShape id="TextAnnotation_0lbjt7p_di" bpmnElement="TextAnnotation_0lbjt7p">
113
- <dc:Bounds x="370" y="50" width="169.99387960829492" height="39.99855990783411" />
114
- <bpmndi:BPMNLabel />
115
- </bpmndi:BPMNShape>
116
- <bpmndi:BPMNEdge id="Association_0ivfgz1_di" bpmnElement="Association_0ivfgz1">
117
- <di:waypoint x="401" y="130" />
118
- <di:waypoint x="413" y="90" />
119
- </bpmndi:BPMNEdge>
120
- </bpmndi:BPMNPlane>
121
- </bpmndi:BPMNDiagram>
122
- </bpmn:definitions>
@@ -1,58 +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:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="ProcessModelToDeploy_Definition" targetNamespace="http://bpmn.io/schema/bpmn" exporter="5Minds Studio" exporterVersion="1">
3
- <bpmn:collaboration id="Collaboration_1cidyxu" name="">
4
- <bpmn:participant id="Participant_0px403d" name="ProcessModelToDeploy" processRef="ProcessModelToDeploy_Process" />
5
- </bpmn:collaboration>
6
- <bpmn:process id="ProcessModelToDeploy_Process" name="ProcessModelToDeploy" isExecutable="true">
7
- <bpmn:laneSet>
8
- <bpmn:lane id="Lane_1xzf0d3">
9
- <bpmn:flowNodeRef>StartEvent_1</bpmn:flowNodeRef>
10
- <bpmn:flowNodeRef>Activity_0p9qhgo</bpmn:flowNodeRef>
11
- <bpmn:flowNodeRef>Event_151g9al</bpmn:flowNodeRef>
12
- </bpmn:lane>
13
- </bpmn:laneSet>
14
- <bpmn:startEvent id="StartEvent_1" name="Start">
15
- <bpmn:outgoing>Flow_0hm7pnt</bpmn:outgoing>
16
- </bpmn:startEvent>
17
- <bpmn:task id="Activity_0p9qhgo" name="Test">
18
- <bpmn:incoming>Flow_0hm7pnt</bpmn:incoming>
19
- <bpmn:outgoing>Flow_0xmw470</bpmn:outgoing>
20
- </bpmn:task>
21
- <bpmn:sequenceFlow id="Flow_0hm7pnt" sourceRef="StartEvent_1" targetRef="Activity_0p9qhgo" />
22
- <bpmn:endEvent id="Event_151g9al">
23
- <bpmn:incoming>Flow_0xmw470</bpmn:incoming>
24
- </bpmn:endEvent>
25
- <bpmn:sequenceFlow id="Flow_0xmw470" sourceRef="Activity_0p9qhgo" targetRef="Event_151g9al" />
26
- </bpmn:process>
27
- <bpmndi:BPMNDiagram id="BPMNDiagram_1">
28
- <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="Collaboration_1cidyxu">
29
- <bpmndi:BPMNShape id="Participant_0px403d_di" bpmnElement="Participant_0px403d" isHorizontal="true">
30
- <dc:Bounds x="5" y="4" width="885" height="346" />
31
- </bpmndi:BPMNShape>
32
- <bpmndi:BPMNShape id="Lane_1xzf0d3_di" bpmnElement="Lane_1xzf0d3" isHorizontal="true">
33
- <dc:Bounds x="35" y="4" width="855" height="346" />
34
- </bpmndi:BPMNShape>
35
- <bpmndi:BPMNShape id="StartEvent_1_di" bpmnElement="StartEvent_1">
36
- <dc:Bounds x="92" y="152" width="36" height="36" />
37
- <bpmndi:BPMNLabel>
38
- <dc:Bounds x="98" y="195" width="24" height="14" />
39
- </bpmndi:BPMNLabel>
40
- </bpmndi:BPMNShape>
41
- <bpmndi:BPMNShape id="Activity_0p9qhgo_di" bpmnElement="Activity_0p9qhgo">
42
- <dc:Bounds x="180" y="130" width="100" height="80" />
43
- <bpmndi:BPMNLabel />
44
- </bpmndi:BPMNShape>
45
- <bpmndi:BPMNShape id="Event_151g9al_di" bpmnElement="Event_151g9al">
46
- <dc:Bounds x="332" y="152" width="36" height="36" />
47
- </bpmndi:BPMNShape>
48
- <bpmndi:BPMNEdge id="Flow_0hm7pnt_di" bpmnElement="Flow_0hm7pnt">
49
- <di:waypoint x="128" y="170" />
50
- <di:waypoint x="180" y="170" />
51
- </bpmndi:BPMNEdge>
52
- <bpmndi:BPMNEdge id="Flow_0xmw470_di" bpmnElement="Flow_0xmw470">
53
- <di:waypoint x="280" y="170" />
54
- <di:waypoint x="332" y="170" />
55
- </bpmndi:BPMNEdge>
56
- </bpmndi:BPMNPlane>
57
- </bpmndi:BPMNDiagram>
58
- </bpmn:definitions>
@@ -1,73 +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:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="SampleEvent_Definition" targetNamespace="http://bpmn.io/schema/bpmn" exporter="5Minds Studio" exporterVersion="1">
3
- <bpmn:collaboration id="Collaboration_1cidyxu" name="">
4
- <bpmn:participant id="Participant_0px403d" name="SampleEvent" processRef="SampleEvent_Process" />
5
- </bpmn:collaboration>
6
- <bpmn:process id="SampleEvent_Process" name="SampleEvent" isExecutable="true">
7
- <bpmn:laneSet>
8
- <bpmn:lane id="Lane_1xzf0d3" name="Lane">
9
- <bpmn:flowNodeRef>StartEvent_1</bpmn:flowNodeRef>
10
- <bpmn:flowNodeRef>Event_1jv39pf</bpmn:flowNodeRef>
11
- <bpmn:flowNodeRef>Activity_18hxefy</bpmn:flowNodeRef>
12
- <bpmn:flowNodeRef>Event_06jifnk</bpmn:flowNodeRef>
13
- </bpmn:lane>
14
- </bpmn:laneSet>
15
- <bpmn:startEvent id="StartEvent_1" name="Start">
16
- <bpmn:outgoing>Flow_0uoj46m</bpmn:outgoing>
17
- </bpmn:startEvent>
18
- <bpmn:sequenceFlow id="Flow_0uoj46m" sourceRef="StartEvent_1" targetRef="Event_06jifnk" />
19
- <bpmn:sequenceFlow id="Flow_0wqom58" sourceRef="Event_06jifnk" targetRef="Activity_18hxefy" />
20
- <bpmn:endEvent id="Event_1jv39pf">
21
- <bpmn:incoming>Flow_1srscxt</bpmn:incoming>
22
- </bpmn:endEvent>
23
- <bpmn:sequenceFlow id="Flow_1srscxt" sourceRef="Activity_18hxefy" targetRef="Event_1jv39pf" />
24
- <bpmn:task id="Activity_18hxefy" name="wait ;-)">
25
- <bpmn:incoming>Flow_0wqom58</bpmn:incoming>
26
- <bpmn:outgoing>Flow_1srscxt</bpmn:outgoing>
27
- </bpmn:task>
28
- <bpmn:intermediateCatchEvent id="Event_06jifnk">
29
- <bpmn:incoming>Flow_0uoj46m</bpmn:incoming>
30
- <bpmn:outgoing>Flow_0wqom58</bpmn:outgoing>
31
- <bpmn:messageEventDefinition id="MessageEventDefinition_1jevsas" messageRef="Message_5MhJAzRd" />
32
- </bpmn:intermediateCatchEvent>
33
- </bpmn:process>
34
- <bpmn:message id="Message_5MhJAzRd" name="sampleEvent" />
35
- <bpmndi:BPMNDiagram id="BPMNDiagram_1">
36
- <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="Collaboration_1cidyxu">
37
- <bpmndi:BPMNShape id="Participant_0px403d_di" bpmnElement="Participant_0px403d" isHorizontal="true">
38
- <dc:Bounds x="5" y="4" width="885" height="346" />
39
- </bpmndi:BPMNShape>
40
- <bpmndi:BPMNShape id="Lane_1xzf0d3_di" bpmnElement="Lane_1xzf0d3" isHorizontal="true">
41
- <dc:Bounds x="35" y="4" width="855" height="346" />
42
- </bpmndi:BPMNShape>
43
- <bpmndi:BPMNShape id="StartEvent_1_di" bpmnElement="StartEvent_1">
44
- <dc:Bounds x="92" y="152" width="36" height="36" />
45
- <bpmndi:BPMNLabel>
46
- <dc:Bounds x="98" y="195" width="24" height="14" />
47
- </bpmndi:BPMNLabel>
48
- </bpmndi:BPMNShape>
49
- <bpmndi:BPMNShape id="Event_1jv39pf_di" bpmnElement="Event_1jv39pf">
50
- <dc:Bounds x="442" y="152" width="36" height="36" />
51
- </bpmndi:BPMNShape>
52
- <bpmndi:BPMNShape id="Activity_18hxefy_di" bpmnElement="Activity_18hxefy">
53
- <dc:Bounds x="270" y="130" width="100" height="80" />
54
- <bpmndi:BPMNLabel />
55
- </bpmndi:BPMNShape>
56
- <bpmndi:BPMNShape id="Event_15e6gcf_di" bpmnElement="Event_06jifnk">
57
- <dc:Bounds x="182" y="152" width="36" height="36" />
58
- </bpmndi:BPMNShape>
59
- <bpmndi:BPMNEdge id="Flow_0uoj46m_di" bpmnElement="Flow_0uoj46m">
60
- <di:waypoint x="128" y="170" />
61
- <di:waypoint x="182" y="170" />
62
- </bpmndi:BPMNEdge>
63
- <bpmndi:BPMNEdge id="Flow_0wqom58_di" bpmnElement="Flow_0wqom58">
64
- <di:waypoint x="218" y="170" />
65
- <di:waypoint x="270" y="170" />
66
- </bpmndi:BPMNEdge>
67
- <bpmndi:BPMNEdge id="Flow_1srscxt_di" bpmnElement="Flow_1srscxt">
68
- <di:waypoint x="370" y="170" />
69
- <di:waypoint x="442" y="170" />
70
- </bpmndi:BPMNEdge>
71
- </bpmndi:BPMNPlane>
72
- </bpmndi:BPMNDiagram>
73
- </bpmn:definitions>
@@ -1,52 +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:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="SimpleExternalTask_Definition" targetNamespace="http://bpmn.io/schema/bpmn" exporter="5Minds Studio" exporterVersion="1">
3
- <bpmn:collaboration id="Collaboration_1cidyxu" name="">
4
- <bpmn:participant id="Participant_0px403d" name="SimpleExternalTask" processRef="SimpleExternalTask_Process" />
5
- </bpmn:collaboration>
6
- <bpmn:process id="SimpleExternalTask_Process" name="SimpleExternalTask" isExecutable="true">
7
- <bpmn:laneSet />
8
- <bpmn:startEvent id="StartEvent_1" name="Start">
9
- <bpmn:outgoing>Flow_0mxbplj</bpmn:outgoing>
10
- </bpmn:startEvent>
11
- <bpmn:sequenceFlow id="Flow_0mxbplj" sourceRef="StartEvent_1" targetRef="Activity_0x9f550" />
12
- <bpmn:endEvent id="Event_1rk4dbx" name="Ende">
13
- <bpmn:incoming>Flow_08pua70</bpmn:incoming>
14
- </bpmn:endEvent>
15
- <bpmn:sequenceFlow id="Flow_08pua70" sourceRef="Activity_0x9f550" targetRef="Event_1rk4dbx" />
16
- <bpmn:serviceTask id="Activity_0x9f550" name="Do Simple ETW" camunda:type="external" camunda:topic="the_simple_topic">
17
- <bpmn:incoming>Flow_0mxbplj</bpmn:incoming>
18
- <bpmn:outgoing>Flow_08pua70</bpmn:outgoing>
19
- </bpmn:serviceTask>
20
- </bpmn:process>
21
- <bpmndi:BPMNDiagram id="BPMNDiagram_1">
22
- <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="Collaboration_1cidyxu">
23
- <bpmndi:BPMNShape id="Participant_0px403d_di" bpmnElement="Participant_0px403d" isHorizontal="true">
24
- <dc:Bounds x="5" y="4" width="485" height="346" />
25
- </bpmndi:BPMNShape>
26
- <bpmndi:BPMNShape id="StartEvent_1_di" bpmnElement="StartEvent_1">
27
- <dc:Bounds x="92" y="152" width="36" height="36" />
28
- <bpmndi:BPMNLabel>
29
- <dc:Bounds x="98" y="195" width="24" height="14" />
30
- </bpmndi:BPMNLabel>
31
- </bpmndi:BPMNShape>
32
- <bpmndi:BPMNShape id="Event_1rk4dbx_di" bpmnElement="Event_1rk4dbx">
33
- <dc:Bounds x="332" y="152" width="36" height="36" />
34
- <bpmndi:BPMNLabel>
35
- <dc:Bounds x="337" y="195" width="26" height="14" />
36
- </bpmndi:BPMNLabel>
37
- </bpmndi:BPMNShape>
38
- <bpmndi:BPMNShape id="Activity_15mr980_di" bpmnElement="Activity_0x9f550">
39
- <dc:Bounds x="180" y="130" width="100" height="80" />
40
- <bpmndi:BPMNLabel />
41
- </bpmndi:BPMNShape>
42
- <bpmndi:BPMNEdge id="Flow_0mxbplj_di" bpmnElement="Flow_0mxbplj">
43
- <di:waypoint x="128" y="170" />
44
- <di:waypoint x="180" y="170" />
45
- </bpmndi:BPMNEdge>
46
- <bpmndi:BPMNEdge id="Flow_08pua70_di" bpmnElement="Flow_08pua70">
47
- <di:waypoint x="280" y="170" />
48
- <di:waypoint x="332" y="170" />
49
- </bpmndi:BPMNEdge>
50
- </bpmndi:BPMNPlane>
51
- </bpmndi:BPMNDiagram>
52
- </bpmn:definitions>