@nanobpm/nano-workforce 0.94.0 → 0.96.0
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.
- package/CHANGELOG.md +14 -0
- package/app/agentic/vocab/crew-vocab.test.ts +12 -0
- package/app/agentic/vocab/crew-vocab.ts +18 -0
- package/app/agentic/vocab/demand-report.test.ts +34 -0
- package/app/agentic/vocab/demand-report.ts +21 -1
- package/app/agentic/vocab/job-types.test.ts +107 -0
- package/app/agentic/vocab/job-types.ts +70 -0
- package/app/feature.ts +43 -0
- package/app/interEpicRegression.test.ts +516 -0
- package/app/plan.test.ts +54 -0
- package/app/plan.ts +63 -0
- package/app/planFanoutPreflight.test.ts +73 -0
- package/app/planLowering.test.ts +184 -0
- package/app/planLowering.ts +201 -0
- package/app/pollUserTasks.test.ts +31 -0
- package/app/service.ts +54 -3
- package/app/userTasks.test.ts +14 -0
- package/app/userTasks.ts +15 -1
- package/app/waitGate.test.ts +176 -0
- package/app/waitGate.ts +199 -0
- package/app/waitGatePoll.test.ts +143 -0
- package/app/waitGateVisibility.test.ts +55 -0
- package/db/migrations/047_plan_wait_gate.sql +34 -0
- package/db/migrations/048_feature_escalations.sql +51 -0
- package/e2e/inter-epic-dependency.e2e.ts +227 -0
- package/e2e/plan-fanout-preflight.e2e.ts +170 -0
- package/openapi.yaml +20 -3
- package/operations/startEpicSet.admission.integration.test.ts +25 -9
- package/operations/startEpicSet.ts +31 -24
- package/package.json +2 -2
- package/pages/epic-detail.page.json +31 -3
- package/pages/epic.page.json +2 -1
- package/pages/feature.page.json +1 -1
- package/pages/home.page.json +1 -0
- package/pages/lineage.page.json +2 -2
- package/pages/overview.page.json +3 -3
- package/pages/tasks.page.json +143 -8
- package/resources/processes/plan-fanout.bpmn +408 -184
- package/workers/record-feature-escalation/worker.test.ts +27 -3
- package/workers/record-feature-escalation/worker.ts +7 -1
- package/workers/select-wave/worker.test.ts +37 -0
- package/workers/select-wave/worker.ts +11 -0
|
@@ -70,6 +70,7 @@
|
|
|
70
70
|
<nano:shape id="SelectWaveIn" name="Select wave — input">
|
|
71
71
|
<nano:extend name="planKey" type="string" />
|
|
72
72
|
<nano:extend name="currentWave" type="integer" />
|
|
73
|
+
<nano:extend name="resolvedArtifacts" type="string" list="true" optional="true" />
|
|
73
74
|
</nano:shape>
|
|
74
75
|
<nano:shape id="ResolveTrialAttentionIn" name="Clear trial attention — input">
|
|
75
76
|
<nano:extend name="planKey" type="string" />
|
|
@@ -82,8 +83,87 @@
|
|
|
82
83
|
</nano:shapes>
|
|
83
84
|
</bpmn:extensionElements>
|
|
84
85
|
<bpmn:startEvent id="Start" name="Issue submitted">
|
|
85
|
-
<bpmn:outgoing>
|
|
86
|
+
<bpmn:outgoing>f_toReadinessGw</bpmn:outgoing>
|
|
86
87
|
</bpmn:startEvent>
|
|
88
|
+
<bpmn:exclusiveGateway id="gw-readiness" name="dependent (has capability gate)?" default="f_readiness_skip">
|
|
89
|
+
<bpmn:incoming>f_toReadinessGw</bpmn:incoming>
|
|
90
|
+
<bpmn:outgoing>f_readiness_gate</bpmn:outgoing>
|
|
91
|
+
<bpmn:outgoing>f_readiness_skip</bpmn:outgoing>
|
|
92
|
+
</bpmn:exclusiveGateway>
|
|
93
|
+
<bpmn:subProcess id="readiness-preflight" name="Await producer capabilities (preflight)">
|
|
94
|
+
<bpmn:incoming>f_readiness_gate</bpmn:incoming>
|
|
95
|
+
<bpmn:outgoing>f_readiness_done</bpmn:outgoing>
|
|
96
|
+
<bpmn:multiInstanceLoopCharacteristics>
|
|
97
|
+
<bpmn:extensionElements>
|
|
98
|
+
<zeebe:loopCharacteristics inputCollection="=readinessProbes" inputElement="probe" outputCollection="resolvedArtifacts" outputElement="=resolvedArtifact" />
|
|
99
|
+
</bpmn:extensionElements>
|
|
100
|
+
</bpmn:multiInstanceLoopCharacteristics>
|
|
101
|
+
<bpmn:startEvent id="pf_start" name="Awaiting capability">
|
|
102
|
+
<bpmn:outgoing>pf_toProbe</bpmn:outgoing>
|
|
103
|
+
</bpmn:startEvent>
|
|
104
|
+
<bpmn:serviceTask id="preflight-probe" name="Probe capability (poll)">
|
|
105
|
+
<bpmn:extensionElements>
|
|
106
|
+
<zeebe:taskDefinition type="pr.readiness-probe" />
|
|
107
|
+
<zeebe:properties>
|
|
108
|
+
<zeebe:property name="io.nanobpm.dataEnvelope.in" value="ReadinessProbeIn" />
|
|
109
|
+
<zeebe:property name="io.nanobpm.dataEnvelope.out" value="ReadinessProbeOut" />
|
|
110
|
+
</zeebe:properties>
|
|
111
|
+
</bpmn:extensionElements>
|
|
112
|
+
<bpmn:incoming>pf_toProbe</bpmn:incoming>
|
|
113
|
+
<bpmn:outgoing>pf_probed</bpmn:outgoing>
|
|
114
|
+
</bpmn:serviceTask>
|
|
115
|
+
<bpmn:boundaryEvent id="be_pf_probe_timeout" name="Probe timed out" attachedToRef="preflight-probe">
|
|
116
|
+
<bpmn:outgoing>pf_probeTimedOut</bpmn:outgoing>
|
|
117
|
+
<bpmn:timerEventDefinition id="ted_pf_probe_timeout">
|
|
118
|
+
<bpmn:timeDuration xsi:type="bpmn:tFormalExpression">=probeTimeout</bpmn:timeDuration>
|
|
119
|
+
</bpmn:timerEventDefinition>
|
|
120
|
+
</bpmn:boundaryEvent>
|
|
121
|
+
<bpmn:exclusiveGateway id="pf_gw" name="capability ready?" default="pf_escalate">
|
|
122
|
+
<bpmn:incoming>pf_probed</bpmn:incoming>
|
|
123
|
+
<bpmn:outgoing>pf_ready</bpmn:outgoing>
|
|
124
|
+
<bpmn:outgoing>pf_escalate</bpmn:outgoing>
|
|
125
|
+
</bpmn:exclusiveGateway>
|
|
126
|
+
<bpmn:userTask id="readiness-escalation-pf" name="Producer capability stalled (human)">
|
|
127
|
+
<bpmn:extensionElements>
|
|
128
|
+
<zeebe:formDefinition formId="readiness-escalation" />
|
|
129
|
+
<zeebe:userTask />
|
|
130
|
+
<zeebe:assignmentDefinition candidateGroups="operators" />
|
|
131
|
+
</bpmn:extensionElements>
|
|
132
|
+
<bpmn:incoming>pf_escalate</bpmn:incoming>
|
|
133
|
+
<bpmn:incoming>pf_probeTimedOut</bpmn:incoming>
|
|
134
|
+
<bpmn:outgoing>pf_toResolution</bpmn:outgoing>
|
|
135
|
+
</bpmn:userTask>
|
|
136
|
+
<bpmn:boundaryEvent id="be_pf_sla" name="SLA elapsed" attachedToRef="readiness-escalation-pf">
|
|
137
|
+
<bpmn:outgoing>pf_sla</bpmn:outgoing>
|
|
138
|
+
<bpmn:timerEventDefinition id="ted_pf_sla">
|
|
139
|
+
<bpmn:timeDuration xsi:type="bpmn:tFormalExpression">=escalationSlaTimeout</bpmn:timeDuration>
|
|
140
|
+
</bpmn:timerEventDefinition>
|
|
141
|
+
</bpmn:boundaryEvent>
|
|
142
|
+
<bpmn:exclusiveGateway id="pf_gw_res" name="resolution?" default="pf_proceed">
|
|
143
|
+
<bpmn:incoming>pf_toResolution</bpmn:incoming>
|
|
144
|
+
<bpmn:outgoing>pf_proceed</bpmn:outgoing>
|
|
145
|
+
<bpmn:outgoing>pf_abandon</bpmn:outgoing>
|
|
146
|
+
</bpmn:exclusiveGateway>
|
|
147
|
+
<bpmn:endEvent id="pf_end" name="Capability settled">
|
|
148
|
+
<bpmn:incoming>pf_ready</bpmn:incoming>
|
|
149
|
+
<bpmn:incoming>pf_proceed</bpmn:incoming>
|
|
150
|
+
<bpmn:incoming>pf_abandon</bpmn:incoming>
|
|
151
|
+
<bpmn:incoming>pf_sla</bpmn:incoming>
|
|
152
|
+
</bpmn:endEvent>
|
|
153
|
+
<bpmn:sequenceFlow id="pf_toProbe" sourceRef="pf_start" targetRef="preflight-probe" />
|
|
154
|
+
<bpmn:sequenceFlow id="pf_probed" sourceRef="preflight-probe" targetRef="pf_gw" />
|
|
155
|
+
<bpmn:sequenceFlow id="pf_ready" name="ready" sourceRef="pf_gw" targetRef="pf_end">
|
|
156
|
+
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">=ready = true</bpmn:conditionExpression>
|
|
157
|
+
</bpmn:sequenceFlow>
|
|
158
|
+
<bpmn:sequenceFlow id="pf_escalate" name="stalled" sourceRef="pf_gw" targetRef="readiness-escalation-pf" />
|
|
159
|
+
<bpmn:sequenceFlow id="pf_probeTimedOut" name="timed out" sourceRef="be_pf_probe_timeout" targetRef="readiness-escalation-pf" />
|
|
160
|
+
<bpmn:sequenceFlow id="pf_toResolution" sourceRef="readiness-escalation-pf" targetRef="pf_gw_res" />
|
|
161
|
+
<bpmn:sequenceFlow id="pf_proceed" name="acknowledge" sourceRef="pf_gw_res" targetRef="pf_end" />
|
|
162
|
+
<bpmn:sequenceFlow id="pf_abandon" name="abandon" sourceRef="pf_gw_res" targetRef="pf_end">
|
|
163
|
+
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">=resolution = "abandon"</bpmn:conditionExpression>
|
|
164
|
+
</bpmn:sequenceFlow>
|
|
165
|
+
<bpmn:sequenceFlow id="pf_sla" name="SLA auto-abandon" sourceRef="be_pf_sla" targetRef="pf_end" />
|
|
166
|
+
</bpmn:subProcess>
|
|
87
167
|
<bpmn:serviceTask id="ensure-base-branch" name="Ensure base branch">
|
|
88
168
|
<bpmn:extensionElements>
|
|
89
169
|
<zeebe:taskDefinition type="pr.ensure-base-branch" />
|
|
@@ -95,7 +175,8 @@
|
|
|
95
175
|
<zeebe:input source="=baseBranch" target="baseBranch" />
|
|
96
176
|
</zeebe:ioMapping>
|
|
97
177
|
</bpmn:extensionElements>
|
|
98
|
-
<bpmn:incoming>
|
|
178
|
+
<bpmn:incoming>f_readiness_skip</bpmn:incoming>
|
|
179
|
+
<bpmn:incoming>f_readiness_done</bpmn:incoming>
|
|
99
180
|
<bpmn:outgoing>f_toPlan</bpmn:outgoing>
|
|
100
181
|
</bpmn:serviceTask>
|
|
101
182
|
<bpmn:serviceTask id="plan" name="Plan (agent)">
|
|
@@ -212,7 +293,7 @@
|
|
|
212
293
|
<zeebe:linkedResource resourceId="feature.md" bindingType="latest" resourceType="GenericScript" linkName="prompt" />
|
|
213
294
|
</zeebe:linkedResources>
|
|
214
295
|
<zeebe:ioMapping>
|
|
215
|
-
<zeebe:input source="=" --- " + task.prompt + (if (blackboardBrief = null) then "" else blackboardBrief) + (if (baseBranchBrief = null) then "" else baseBranchBrief)" target="appendPrompt" />
|
|
296
|
+
<zeebe:input source="=" --- " + task.prompt + (if (blackboardBrief = null) then "" else blackboardBrief) + (if (baseBranchBrief = null) then "" else baseBranchBrief) + (if (resolvedArtifacts = null or count(resolvedArtifacts[item != null]) = 0) then "" else (" --- **Bound producer capabilities (inter-epic gate).** This epic depends on capabilities another epic in the set just published. Build/install/clone against EXACTLY these published versions (the ones first carrying the awaited capability), never merely the newest: " + string join(resolvedArtifacts[item != null], " ")))" target="appendPrompt" />
|
|
216
297
|
<zeebe:output source="=status" target="status" />
|
|
217
298
|
<zeebe:output source="=question" target="question" />
|
|
218
299
|
</zeebe:ioMapping>
|
|
@@ -370,7 +451,12 @@
|
|
|
370
451
|
<bpmn:endEvent id="End" name="Fleet dispatched">
|
|
371
452
|
<bpmn:incoming>f_toEnd</bpmn:incoming>
|
|
372
453
|
</bpmn:endEvent>
|
|
373
|
-
<bpmn:sequenceFlow id="
|
|
454
|
+
<bpmn:sequenceFlow id="f_toReadinessGw" sourceRef="Start" targetRef="gw-readiness" />
|
|
455
|
+
<bpmn:sequenceFlow id="f_readiness_gate" name="dependent" sourceRef="gw-readiness" targetRef="readiness-preflight">
|
|
456
|
+
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">=readinessProbes != null and count(readinessProbes) > 0</bpmn:conditionExpression>
|
|
457
|
+
</bpmn:sequenceFlow>
|
|
458
|
+
<bpmn:sequenceFlow id="f_readiness_skip" name="root" sourceRef="gw-readiness" targetRef="ensure-base-branch" />
|
|
459
|
+
<bpmn:sequenceFlow id="f_readiness_done" sourceRef="readiness-preflight" targetRef="ensure-base-branch" />
|
|
374
460
|
<bpmn:sequenceFlow id="f_toPlan" sourceRef="ensure-base-branch" targetRef="plan" />
|
|
375
461
|
<bpmn:sequenceFlow id="f_toRecordPlan" sourceRef="plan" targetRef="record-plan" />
|
|
376
462
|
<bpmn:sequenceFlow id="f_toReviewPlan" sourceRef="record-plan" targetRef="review-plan" />
|
|
@@ -427,399 +513,537 @@
|
|
|
427
513
|
<dc:Bounds x="63" y="272" width="70" height="28" />
|
|
428
514
|
</bpmndi:BPMNLabel>
|
|
429
515
|
</bpmndi:BPMNShape>
|
|
516
|
+
<bpmndi:BPMNShape id="BPMNShape_gw-readiness" bpmnElement="gw-readiness" isMarkerVisible="true">
|
|
517
|
+
<dc:Bounds x="216" y="224" width="50" height="50" />
|
|
518
|
+
<bpmndi:BPMNLabel>
|
|
519
|
+
<dc:Bounds x="204" y="163" width="74" height="56" />
|
|
520
|
+
</bpmndi:BPMNLabel>
|
|
521
|
+
</bpmndi:BPMNShape>
|
|
522
|
+
<bpmndi:BPMNShape id="BPMNShape_readiness-preflight" bpmnElement="readiness-preflight">
|
|
523
|
+
<dc:Bounds x="366" y="369" width="100" height="80" />
|
|
524
|
+
</bpmndi:BPMNShape>
|
|
430
525
|
<bpmndi:BPMNShape id="BPMNShape_ensure-base-branch" bpmnElement="ensure-base-branch">
|
|
431
|
-
<dc:Bounds x="
|
|
526
|
+
<dc:Bounds x="566" y="209" width="100" height="80" />
|
|
432
527
|
</bpmndi:BPMNShape>
|
|
433
528
|
<bpmndi:BPMNShape id="BPMNShape_plan" bpmnElement="plan">
|
|
434
|
-
<dc:Bounds x="
|
|
529
|
+
<dc:Bounds x="766" y="209" width="100" height="80" />
|
|
435
530
|
</bpmndi:BPMNShape>
|
|
436
531
|
<bpmndi:BPMNShape id="BPMNShape_record-plan" bpmnElement="record-plan">
|
|
437
|
-
<dc:Bounds x="
|
|
532
|
+
<dc:Bounds x="966" y="209" width="100" height="80" />
|
|
438
533
|
</bpmndi:BPMNShape>
|
|
439
534
|
<bpmndi:BPMNShape id="BPMNShape_review-plan" bpmnElement="review-plan">
|
|
440
|
-
<dc:Bounds x="
|
|
535
|
+
<dc:Bounds x="1166" y="209" width="100" height="80" />
|
|
441
536
|
</bpmndi:BPMNShape>
|
|
442
537
|
<bpmndi:BPMNShape id="BPMNShape_record-plan-review" bpmnElement="record-plan-review">
|
|
443
|
-
<dc:Bounds x="
|
|
538
|
+
<dc:Bounds x="1366" y="209" width="100" height="80" />
|
|
444
539
|
</bpmndi:BPMNShape>
|
|
445
540
|
<bpmndi:BPMNShape id="BPMNShape_gw-plan-review" bpmnElement="gw-plan-review" isMarkerVisible="true">
|
|
446
|
-
<dc:Bounds x="
|
|
541
|
+
<dc:Bounds x="1566" y="224" width="50" height="50" />
|
|
447
542
|
<bpmndi:BPMNLabel>
|
|
448
|
-
<dc:Bounds x="
|
|
543
|
+
<dc:Bounds x="1518" y="279" width="67" height="28" />
|
|
449
544
|
</bpmndi:BPMNLabel>
|
|
450
545
|
</bpmndi:BPMNShape>
|
|
451
546
|
<bpmndi:BPMNShape id="BPMNShape_plan-review-decision" bpmnElement="plan-review-decision">
|
|
452
|
-
<dc:Bounds x="
|
|
547
|
+
<dc:Bounds x="1716" y="369" width="100" height="80" />
|
|
453
548
|
</bpmndi:BPMNShape>
|
|
454
549
|
<bpmndi:BPMNShape id="BPMNShape_gw-plan-answer" bpmnElement="gw-plan-answer" isMarkerVisible="true">
|
|
455
|
-
<dc:Bounds x="
|
|
550
|
+
<dc:Bounds x="1916" y="384" width="50" height="50" />
|
|
456
551
|
<bpmndi:BPMNLabel>
|
|
457
|
-
<dc:Bounds x="
|
|
552
|
+
<dc:Bounds x="1971" y="395" width="67" height="28" />
|
|
458
553
|
</bpmndi:BPMNLabel>
|
|
459
554
|
</bpmndi:BPMNShape>
|
|
460
555
|
<bpmndi:BPMNShape id="BPMNShape_select-wave" bpmnElement="select-wave">
|
|
461
|
-
<dc:Bounds x="
|
|
556
|
+
<dc:Bounds x="2066" y="209" width="100" height="80" />
|
|
462
557
|
</bpmndi:BPMNShape>
|
|
463
558
|
<bpmndi:BPMNShape id="BPMNShape_implement" bpmnElement="implement" isExpanded="true">
|
|
464
|
-
<dc:Bounds x="
|
|
559
|
+
<dc:Bounds x="2266" y="80" width="952" height="338" />
|
|
465
560
|
</bpmndi:BPMNShape>
|
|
466
561
|
<bpmndi:BPMNShape id="BPMNShape_record-wave" bpmnElement="record-wave">
|
|
467
|
-
<dc:Bounds x="
|
|
562
|
+
<dc:Bounds x="3318" y="209" width="100" height="80" />
|
|
468
563
|
</bpmndi:BPMNShape>
|
|
469
564
|
<bpmndi:BPMNShape id="BPMNShape_gw-trial-needed" bpmnElement="gw-trial-needed" isMarkerVisible="true">
|
|
470
|
-
<dc:Bounds x="
|
|
565
|
+
<dc:Bounds x="3518" y="224" width="50" height="50" />
|
|
471
566
|
<bpmndi:BPMNLabel>
|
|
472
|
-
<dc:Bounds x="
|
|
567
|
+
<dc:Bounds x="3499" y="205" width="88" height="14" />
|
|
473
568
|
</bpmndi:BPMNLabel>
|
|
474
569
|
</bpmndi:BPMNShape>
|
|
475
570
|
<bpmndi:BPMNShape id="BPMNShape_trial-merge" bpmnElement="trial-merge">
|
|
476
|
-
<dc:Bounds x="
|
|
571
|
+
<dc:Bounds x="3668" y="849" width="100" height="80" />
|
|
477
572
|
</bpmndi:BPMNShape>
|
|
478
573
|
<bpmndi:BPMNShape id="BPMNShape_record-trial-merge" bpmnElement="record-trial-merge">
|
|
479
|
-
<dc:Bounds x="
|
|
574
|
+
<dc:Bounds x="3868" y="849" width="100" height="80" />
|
|
480
575
|
</bpmndi:BPMNShape>
|
|
481
576
|
<bpmndi:BPMNShape id="BPMNShape_gw-trial" bpmnElement="gw-trial" isMarkerVisible="true">
|
|
482
|
-
<dc:Bounds x="
|
|
577
|
+
<dc:Bounds x="4068" y="864" width="50" height="50" />
|
|
483
578
|
<bpmndi:BPMNLabel>
|
|
484
|
-
<dc:Bounds x="
|
|
579
|
+
<dc:Bounds x="4058" y="919" width="71" height="14" />
|
|
485
580
|
</bpmndi:BPMNLabel>
|
|
486
581
|
</bpmndi:BPMNShape>
|
|
487
582
|
<bpmndi:BPMNShape id="BPMNShape_trial-merge-decision" bpmnElement="trial-merge-decision">
|
|
488
|
-
<dc:Bounds x="
|
|
583
|
+
<dc:Bounds x="4218" y="369" width="100" height="80" />
|
|
489
584
|
</bpmndi:BPMNShape>
|
|
490
585
|
<bpmndi:BPMNShape id="BPMNShape_resolve-trial-attention" bpmnElement="resolve-trial-attention">
|
|
491
|
-
<dc:Bounds x="
|
|
586
|
+
<dc:Bounds x="4418" y="369" width="100" height="80" />
|
|
492
587
|
</bpmndi:BPMNShape>
|
|
493
588
|
<bpmndi:BPMNShape id="BPMNShape_gw-trial-answer" bpmnElement="gw-trial-answer" isMarkerVisible="true">
|
|
494
|
-
<dc:Bounds x="
|
|
589
|
+
<dc:Bounds x="4618" y="384" width="50" height="50" />
|
|
495
590
|
<bpmndi:BPMNLabel>
|
|
496
|
-
<dc:Bounds x="
|
|
591
|
+
<dc:Bounds x="4617" y="439" width="53" height="14" />
|
|
497
592
|
</bpmndi:BPMNLabel>
|
|
498
593
|
</bpmndi:BPMNShape>
|
|
499
594
|
<bpmndi:BPMNShape id="BPMNShape_gw-more" bpmnElement="gw-more" isMarkerVisible="true">
|
|
500
|
-
<dc:Bounds x="
|
|
595
|
+
<dc:Bounds x="4768" y="224" width="50" height="50" />
|
|
501
596
|
<bpmndi:BPMNLabel>
|
|
502
|
-
<dc:Bounds x="
|
|
597
|
+
<dc:Bounds x="4691" y="279" width="84" height="14" />
|
|
503
598
|
</bpmndi:BPMNLabel>
|
|
504
599
|
</bpmndi:BPMNShape>
|
|
505
600
|
<bpmndi:BPMNShape id="BPMNShape_wait-wave-merged" bpmnElement="wait-wave-merged">
|
|
506
|
-
<dc:Bounds x="
|
|
601
|
+
<dc:Bounds x="4950" y="391" width="36" height="36" />
|
|
507
602
|
<bpmndi:BPMNLabel>
|
|
508
|
-
<dc:Bounds x="
|
|
603
|
+
<dc:Bounds x="4929" y="358" width="78" height="28" />
|
|
509
604
|
</bpmndi:BPMNLabel>
|
|
510
605
|
</bpmndi:BPMNShape>
|
|
511
606
|
<bpmndi:BPMNShape id="BPMNShape_record-results" bpmnElement="record-results">
|
|
512
|
-
<dc:Bounds x="
|
|
607
|
+
<dc:Bounds x="4918" y="209" width="100" height="80" />
|
|
513
608
|
</bpmndi:BPMNShape>
|
|
514
609
|
<bpmndi:BPMNShape id="BPMNShape_End" bpmnElement="End">
|
|
515
|
-
<dc:Bounds x="
|
|
610
|
+
<dc:Bounds x="5118" y="231" width="36" height="36" />
|
|
516
611
|
<bpmndi:BPMNLabel>
|
|
517
|
-
<dc:Bounds x="
|
|
612
|
+
<dc:Bounds x="5099" y="272" width="74" height="28" />
|
|
518
613
|
</bpmndi:BPMNLabel>
|
|
519
614
|
</bpmndi:BPMNShape>
|
|
520
615
|
<bpmndi:BPMNShape id="BPMNShape_be_plan_sla" bpmnElement="be_plan_sla">
|
|
521
|
-
<dc:Bounds x="
|
|
616
|
+
<dc:Bounds x="1748" y="431" width="36" height="36" />
|
|
522
617
|
<bpmndi:BPMNLabel>
|
|
523
|
-
<dc:Bounds x="
|
|
618
|
+
<dc:Bounds x="1724" y="512" width="84" height="14" />
|
|
524
619
|
</bpmndi:BPMNLabel>
|
|
525
620
|
</bpmndi:BPMNShape>
|
|
526
621
|
<bpmndi:BPMNShape id="BPMNShape_be_trial_sla" bpmnElement="be_trial_sla">
|
|
527
|
-
<dc:Bounds x="
|
|
622
|
+
<dc:Bounds x="4250" y="431" width="36" height="36" />
|
|
528
623
|
<bpmndi:BPMNLabel>
|
|
529
|
-
<dc:Bounds x="
|
|
624
|
+
<dc:Bounds x="4166" y="512" width="84" height="14" />
|
|
530
625
|
</bpmndi:BPMNLabel>
|
|
531
626
|
</bpmndi:BPMNShape>
|
|
532
|
-
<bpmndi:BPMNEdge id="
|
|
627
|
+
<bpmndi:BPMNEdge id="BPMNEdge_f_toReadinessGw" bpmnElement="f_toReadinessGw">
|
|
533
628
|
<di:waypoint x="116" y="249" />
|
|
534
629
|
<di:waypoint x="216" y="249" />
|
|
535
630
|
</bpmndi:BPMNEdge>
|
|
631
|
+
<bpmndi:BPMNEdge id="BPMNEdge_f_readiness_skip" bpmnElement="f_readiness_skip">
|
|
632
|
+
<di:waypoint x="266" y="249" />
|
|
633
|
+
<di:waypoint x="566" y="249" />
|
|
634
|
+
<bpmndi:BPMNLabel>
|
|
635
|
+
<dc:Bounds x="400" y="227" width="32" height="14" />
|
|
636
|
+
</bpmndi:BPMNLabel>
|
|
637
|
+
</bpmndi:BPMNEdge>
|
|
536
638
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toPlan" bpmnElement="f_toPlan">
|
|
537
|
-
<di:waypoint x="
|
|
538
|
-
<di:waypoint x="
|
|
639
|
+
<di:waypoint x="666" y="249" />
|
|
640
|
+
<di:waypoint x="766" y="249" />
|
|
539
641
|
</bpmndi:BPMNEdge>
|
|
540
642
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toRecordPlan" bpmnElement="f_toRecordPlan">
|
|
541
|
-
<di:waypoint x="
|
|
542
|
-
<di:waypoint x="
|
|
643
|
+
<di:waypoint x="866" y="249" />
|
|
644
|
+
<di:waypoint x="966" y="249" />
|
|
543
645
|
</bpmndi:BPMNEdge>
|
|
544
646
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toReviewPlan" bpmnElement="f_toReviewPlan">
|
|
545
|
-
<di:waypoint x="
|
|
546
|
-
<di:waypoint x="
|
|
647
|
+
<di:waypoint x="1066" y="249" />
|
|
648
|
+
<di:waypoint x="1166" y="249" />
|
|
547
649
|
</bpmndi:BPMNEdge>
|
|
548
650
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toRecordPlanReview" bpmnElement="f_toRecordPlanReview">
|
|
549
|
-
<di:waypoint x="
|
|
550
|
-
<di:waypoint x="
|
|
651
|
+
<di:waypoint x="1266" y="249" />
|
|
652
|
+
<di:waypoint x="1366" y="249" />
|
|
551
653
|
</bpmndi:BPMNEdge>
|
|
552
654
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toGwPlanReview" bpmnElement="f_toGwPlanReview">
|
|
553
|
-
<di:waypoint x="
|
|
554
|
-
<di:waypoint x="
|
|
655
|
+
<di:waypoint x="1466" y="249" />
|
|
656
|
+
<di:waypoint x="1566" y="249" />
|
|
555
657
|
</bpmndi:BPMNEdge>
|
|
556
658
|
<bpmndi:BPMNEdge id="BPMNEdge_f_plan_proceed" bpmnElement="f_plan_proceed">
|
|
557
|
-
<di:waypoint x="
|
|
558
|
-
<di:waypoint x="
|
|
659
|
+
<di:waypoint x="1616" y="249" />
|
|
660
|
+
<di:waypoint x="2066" y="249" />
|
|
559
661
|
<bpmndi:BPMNLabel>
|
|
560
|
-
<dc:Bounds x="
|
|
662
|
+
<dc:Bounds x="1749" y="227" width="60" height="14" />
|
|
561
663
|
</bpmndi:BPMNLabel>
|
|
562
664
|
</bpmndi:BPMNEdge>
|
|
563
665
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toImplement" bpmnElement="f_toImplement">
|
|
564
|
-
<di:waypoint x="
|
|
565
|
-
<di:waypoint x="
|
|
666
|
+
<di:waypoint x="2166" y="249" />
|
|
667
|
+
<di:waypoint x="2266" y="249" />
|
|
566
668
|
</bpmndi:BPMNEdge>
|
|
567
669
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toRecordWave" bpmnElement="f_toRecordWave">
|
|
568
|
-
<di:waypoint x="
|
|
569
|
-
<di:waypoint x="
|
|
670
|
+
<di:waypoint x="3218" y="249" />
|
|
671
|
+
<di:waypoint x="3318" y="249" />
|
|
570
672
|
</bpmndi:BPMNEdge>
|
|
571
673
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toTrialNeeded" bpmnElement="f_toTrialNeeded">
|
|
572
|
-
<di:waypoint x="
|
|
573
|
-
<di:waypoint x="
|
|
674
|
+
<di:waypoint x="3418" y="249" />
|
|
675
|
+
<di:waypoint x="3518" y="249" />
|
|
574
676
|
</bpmndi:BPMNEdge>
|
|
575
677
|
<bpmndi:BPMNEdge id="BPMNEdge_f_skipTrialMerge" bpmnElement="f_skipTrialMerge">
|
|
576
|
-
<di:waypoint x="
|
|
577
|
-
<di:waypoint x="
|
|
678
|
+
<di:waypoint x="3568" y="249" />
|
|
679
|
+
<di:waypoint x="4768" y="249" />
|
|
578
680
|
<bpmndi:BPMNLabel>
|
|
579
|
-
<dc:Bounds x="
|
|
681
|
+
<dc:Bounds x="4090" y="227" width="32" height="14" />
|
|
580
682
|
</bpmndi:BPMNLabel>
|
|
581
683
|
</bpmndi:BPMNEdge>
|
|
582
684
|
<bpmndi:BPMNEdge id="BPMNEdge_f_done" bpmnElement="f_done">
|
|
583
|
-
<di:waypoint x="
|
|
584
|
-
<di:waypoint x="
|
|
685
|
+
<di:waypoint x="4818" y="249" />
|
|
686
|
+
<di:waypoint x="4918" y="249" />
|
|
585
687
|
<bpmndi:BPMNLabel>
|
|
586
|
-
<dc:Bounds x="
|
|
688
|
+
<dc:Bounds x="4852" y="227" width="32" height="14" />
|
|
587
689
|
</bpmndi:BPMNLabel>
|
|
588
690
|
</bpmndi:BPMNEdge>
|
|
589
691
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toEnd" bpmnElement="f_toEnd">
|
|
590
|
-
<di:waypoint x="
|
|
591
|
-
<di:waypoint x="
|
|
692
|
+
<di:waypoint x="5018" y="249" />
|
|
693
|
+
<di:waypoint x="5118" y="249" />
|
|
592
694
|
</bpmndi:BPMNEdge>
|
|
593
695
|
<bpmndi:BPMNEdge id="BPMNEdge_f_plan_answer_revise" bpmnElement="f_plan_answer_revise">
|
|
594
|
-
<di:waypoint x="
|
|
595
|
-
<di:waypoint x="
|
|
596
|
-
<di:waypoint x="
|
|
597
|
-
<di:waypoint x="
|
|
696
|
+
<di:waypoint x="1941" y="434" />
|
|
697
|
+
<di:waypoint x="1941" y="489" />
|
|
698
|
+
<di:waypoint x="816" y="489" />
|
|
699
|
+
<di:waypoint x="816" y="289" />
|
|
598
700
|
<bpmndi:BPMNLabel>
|
|
599
|
-
<dc:Bounds x="
|
|
701
|
+
<dc:Bounds x="1356" y="467" width="46" height="14" />
|
|
600
702
|
</bpmndi:BPMNLabel>
|
|
601
703
|
</bpmndi:BPMNEdge>
|
|
602
704
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toRecordTrialMerge" bpmnElement="f_toRecordTrialMerge">
|
|
603
|
-
<di:waypoint x="
|
|
604
|
-
<di:waypoint x="
|
|
705
|
+
<di:waypoint x="3768" y="889" />
|
|
706
|
+
<di:waypoint x="3868" y="889" />
|
|
605
707
|
</bpmndi:BPMNEdge>
|
|
606
708
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toGwTrial" bpmnElement="f_toGwTrial">
|
|
607
|
-
<di:waypoint x="
|
|
608
|
-
<di:waypoint x="
|
|
709
|
+
<di:waypoint x="3968" y="889" />
|
|
710
|
+
<di:waypoint x="4068" y="889" />
|
|
609
711
|
</bpmndi:BPMNEdge>
|
|
610
712
|
<bpmndi:BPMNEdge id="BPMNEdge_f_trialProceed" bpmnElement="f_trialProceed">
|
|
611
|
-
<di:waypoint x="
|
|
612
|
-
<di:waypoint x="
|
|
613
|
-
<di:waypoint x="
|
|
713
|
+
<di:waypoint x="4118" y="889" />
|
|
714
|
+
<di:waypoint x="4793" y="889" />
|
|
715
|
+
<di:waypoint x="4793" y="274" />
|
|
614
716
|
<bpmndi:BPMNLabel>
|
|
615
|
-
<dc:Bounds x="
|
|
717
|
+
<dc:Bounds x="4429" y="867" width="53" height="14" />
|
|
616
718
|
</bpmndi:BPMNLabel>
|
|
617
719
|
</bpmndi:BPMNEdge>
|
|
618
720
|
<bpmndi:BPMNEdge id="BPMNEdge_f_trialAnswerRerun" bpmnElement="f_trialAnswerRerun">
|
|
619
|
-
<di:waypoint x="
|
|
620
|
-
<di:waypoint x="
|
|
621
|
-
<di:waypoint x="
|
|
622
|
-
<di:waypoint x="
|
|
721
|
+
<di:waypoint x="4643" y="384" />
|
|
722
|
+
<di:waypoint x="4643" y="349" />
|
|
723
|
+
<di:waypoint x="3718" y="349" />
|
|
724
|
+
<di:waypoint x="3718" y="849" />
|
|
623
725
|
<bpmndi:BPMNLabel>
|
|
624
|
-
<dc:Bounds x="
|
|
726
|
+
<dc:Bounds x="4158" y="327" width="46" height="14" />
|
|
727
|
+
</bpmndi:BPMNLabel>
|
|
728
|
+
</bpmndi:BPMNEdge>
|
|
729
|
+
<bpmndi:BPMNEdge id="BPMNEdge_f_readiness_gate" bpmnElement="f_readiness_gate">
|
|
730
|
+
<di:waypoint x="241" y="274" />
|
|
731
|
+
<di:waypoint x="241" y="409" />
|
|
732
|
+
<di:waypoint x="366" y="409" />
|
|
733
|
+
<bpmndi:BPMNLabel>
|
|
734
|
+
<dc:Bounds x="246" y="335" width="67" height="14" />
|
|
625
735
|
</bpmndi:BPMNLabel>
|
|
626
736
|
</bpmndi:BPMNEdge>
|
|
627
737
|
<bpmndi:BPMNEdge id="BPMNEdge_f_plan_escalate" bpmnElement="f_plan_escalate">
|
|
628
|
-
<di:waypoint x="
|
|
629
|
-
<di:waypoint x="
|
|
630
|
-
<di:waypoint x="
|
|
738
|
+
<di:waypoint x="1591" y="274" />
|
|
739
|
+
<di:waypoint x="1591" y="409" />
|
|
740
|
+
<di:waypoint x="1716" y="409" />
|
|
631
741
|
<bpmndi:BPMNLabel>
|
|
632
|
-
<dc:Bounds x="
|
|
742
|
+
<dc:Bounds x="1596" y="335" width="67" height="14" />
|
|
633
743
|
</bpmndi:BPMNLabel>
|
|
634
744
|
</bpmndi:BPMNEdge>
|
|
635
745
|
<bpmndi:BPMNEdge id="BPMNEdge_f_plan_answer_proceed" bpmnElement="f_plan_answer_proceed">
|
|
636
|
-
<di:waypoint x="
|
|
637
|
-
<di:waypoint x="
|
|
638
|
-
<di:waypoint x="
|
|
746
|
+
<di:waypoint x="1941" y="384" />
|
|
747
|
+
<di:waypoint x="1941" y="249" />
|
|
748
|
+
<di:waypoint x="2066" y="249" />
|
|
639
749
|
<bpmndi:BPMNLabel>
|
|
640
|
-
<dc:Bounds x="
|
|
750
|
+
<dc:Bounds x="1946" y="310" width="53" height="14" />
|
|
641
751
|
</bpmndi:BPMNLabel>
|
|
642
752
|
</bpmndi:BPMNEdge>
|
|
643
753
|
<bpmndi:BPMNEdge id="BPMNEdge_f_runTrialMerge" bpmnElement="f_runTrialMerge">
|
|
644
|
-
<di:waypoint x="
|
|
645
|
-
<di:waypoint x="
|
|
646
|
-
<di:waypoint x="
|
|
754
|
+
<di:waypoint x="3543" y="274" />
|
|
755
|
+
<di:waypoint x="3543" y="889" />
|
|
756
|
+
<di:waypoint x="3668" y="889" />
|
|
647
757
|
<bpmndi:BPMNLabel>
|
|
648
|
-
<dc:Bounds x="
|
|
758
|
+
<dc:Bounds x="3548" y="575" width="25" height="14" />
|
|
649
759
|
</bpmndi:BPMNLabel>
|
|
650
760
|
</bpmndi:BPMNEdge>
|
|
651
761
|
<bpmndi:BPMNEdge id="BPMNEdge_f_trialEscalate" bpmnElement="f_trialEscalate">
|
|
652
|
-
<di:waypoint x="
|
|
653
|
-
<di:waypoint x="
|
|
654
|
-
<di:waypoint x="
|
|
762
|
+
<di:waypoint x="4093" y="864" />
|
|
763
|
+
<di:waypoint x="4093" y="409" />
|
|
764
|
+
<di:waypoint x="4218" y="409" />
|
|
655
765
|
<bpmndi:BPMNLabel>
|
|
656
|
-
<dc:Bounds x="
|
|
766
|
+
<dc:Bounds x="4098" y="630" width="85" height="14" />
|
|
657
767
|
</bpmndi:BPMNLabel>
|
|
658
768
|
</bpmndi:BPMNEdge>
|
|
659
769
|
<bpmndi:BPMNEdge id="BPMNEdge_f_trialAnswerProceed" bpmnElement="f_trialAnswerProceed">
|
|
660
|
-
<di:waypoint x="
|
|
661
|
-
<di:waypoint x="
|
|
662
|
-
<di:waypoint x="
|
|
770
|
+
<di:waypoint x="4643" y="384" />
|
|
771
|
+
<di:waypoint x="4643" y="249" />
|
|
772
|
+
<di:waypoint x="4768" y="249" />
|
|
663
773
|
<bpmndi:BPMNLabel>
|
|
664
|
-
<dc:Bounds x="
|
|
774
|
+
<dc:Bounds x="4648" y="310" width="53" height="14" />
|
|
665
775
|
</bpmndi:BPMNLabel>
|
|
666
776
|
</bpmndi:BPMNEdge>
|
|
667
777
|
<bpmndi:BPMNEdge id="BPMNEdge_f_trialAnswerAbandon" bpmnElement="f_trialAnswerAbandon">
|
|
668
|
-
<di:waypoint x="
|
|
669
|
-
<di:waypoint x="
|
|
670
|
-
<di:waypoint x="
|
|
671
|
-
<di:waypoint x="
|
|
672
|
-
<di:waypoint x="
|
|
778
|
+
<di:waypoint x="4643" y="384" />
|
|
779
|
+
<di:waypoint x="4643" y="220" />
|
|
780
|
+
<di:waypoint x="4898" y="220" />
|
|
781
|
+
<di:waypoint x="4898" y="249" />
|
|
782
|
+
<di:waypoint x="4918" y="249" />
|
|
673
783
|
<bpmndi:BPMNLabel>
|
|
674
|
-
<dc:Bounds x="
|
|
784
|
+
<dc:Bounds x="4744" y="198" width="53" height="14" />
|
|
675
785
|
</bpmndi:BPMNLabel>
|
|
676
786
|
</bpmndi:BPMNEdge>
|
|
677
787
|
<bpmndi:BPMNEdge id="BPMNEdge_f_moreWaves" bpmnElement="f_moreWaves">
|
|
678
|
-
<di:waypoint x="
|
|
679
|
-
<di:waypoint x="
|
|
680
|
-
<di:waypoint x="
|
|
681
|
-
<di:waypoint x="
|
|
682
|
-
<di:waypoint x="
|
|
683
|
-
<di:waypoint x="
|
|
684
|
-
<di:waypoint x="
|
|
685
|
-
<di:waypoint x="
|
|
686
|
-
<di:waypoint x="
|
|
788
|
+
<di:waypoint x="4818" y="249" />
|
|
789
|
+
<di:waypoint x="4838" y="249" />
|
|
790
|
+
<di:waypoint x="4838" y="274" />
|
|
791
|
+
<di:waypoint x="4872" y="274" />
|
|
792
|
+
<di:waypoint x="4872" y="429" />
|
|
793
|
+
<di:waypoint x="4950" y="429" />
|
|
794
|
+
<di:waypoint x="4950" y="447" />
|
|
795
|
+
<di:waypoint x="4968" y="447" />
|
|
796
|
+
<di:waypoint x="4968" y="427" />
|
|
687
797
|
<bpmndi:BPMNLabel>
|
|
688
|
-
<dc:Bounds x="
|
|
798
|
+
<dc:Bounds x="4877" y="345" width="35" height="14" />
|
|
689
799
|
</bpmndi:BPMNLabel>
|
|
690
800
|
</bpmndi:BPMNEdge>
|
|
801
|
+
<bpmndi:BPMNEdge id="BPMNEdge_f_readiness_done" bpmnElement="f_readiness_done">
|
|
802
|
+
<di:waypoint x="466" y="409" />
|
|
803
|
+
<di:waypoint x="616" y="409" />
|
|
804
|
+
<di:waypoint x="616" y="289" />
|
|
805
|
+
</bpmndi:BPMNEdge>
|
|
691
806
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toGwPlanAnswer" bpmnElement="f_toGwPlanAnswer">
|
|
692
|
-
<di:waypoint x="
|
|
693
|
-
<di:waypoint x="
|
|
807
|
+
<di:waypoint x="1816" y="409" />
|
|
808
|
+
<di:waypoint x="1916" y="409" />
|
|
694
809
|
</bpmndi:BPMNEdge>
|
|
695
810
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toGwTrialAnswer" bpmnElement="f_toGwTrialAnswer">
|
|
696
|
-
<di:waypoint x="
|
|
697
|
-
<di:waypoint x="
|
|
811
|
+
<di:waypoint x="4318" y="409" />
|
|
812
|
+
<di:waypoint x="4418" y="409" />
|
|
698
813
|
</bpmndi:BPMNEdge>
|
|
699
814
|
<bpmndi:BPMNEdge id="BPMNEdge_f_resolveToTrialAnswer" bpmnElement="f_resolveToTrialAnswer">
|
|
700
|
-
<di:waypoint x="
|
|
701
|
-
<di:waypoint x="
|
|
815
|
+
<di:waypoint x="4518" y="409" />
|
|
816
|
+
<di:waypoint x="4618" y="409" />
|
|
702
817
|
</bpmndi:BPMNEdge>
|
|
703
818
|
<bpmndi:BPMNEdge id="BPMNEdge_f_plan_revise" bpmnElement="f_plan_revise">
|
|
704
|
-
<di:waypoint x="
|
|
705
|
-
<di:waypoint x="
|
|
706
|
-
<di:waypoint x="
|
|
707
|
-
<di:waypoint x="
|
|
819
|
+
<di:waypoint x="1591" y="224" />
|
|
820
|
+
<di:waypoint x="1591" y="189" />
|
|
821
|
+
<di:waypoint x="816" y="189" />
|
|
822
|
+
<di:waypoint x="816" y="209" />
|
|
708
823
|
<bpmndi:BPMNLabel>
|
|
709
|
-
<dc:Bounds x="
|
|
824
|
+
<dc:Bounds x="1181" y="167" width="46" height="14" />
|
|
710
825
|
</bpmndi:BPMNLabel>
|
|
711
826
|
</bpmndi:BPMNEdge>
|
|
712
827
|
<bpmndi:BPMNEdge id="BPMNEdge_f_waveMerged" bpmnElement="f_waveMerged">
|
|
713
|
-
<di:waypoint x="
|
|
714
|
-
<di:waypoint x="
|
|
715
|
-
<di:waypoint x="
|
|
716
|
-
<di:waypoint x="
|
|
828
|
+
<di:waypoint x="4968" y="427" />
|
|
829
|
+
<di:waypoint x="4968" y="489" />
|
|
830
|
+
<di:waypoint x="2116" y="489" />
|
|
831
|
+
<di:waypoint x="2116" y="289" />
|
|
717
832
|
</bpmndi:BPMNEdge>
|
|
718
833
|
<bpmndi:BPMNEdge id="BPMNEdge_f_plan_sla" bpmnElement="f_plan_sla">
|
|
719
|
-
<di:waypoint x="
|
|
720
|
-
<di:waypoint x="
|
|
721
|
-
<di:waypoint x="
|
|
722
|
-
<di:waypoint x="
|
|
834
|
+
<di:waypoint x="1766" y="467" />
|
|
835
|
+
<di:waypoint x="1766" y="487" />
|
|
836
|
+
<di:waypoint x="816" y="487" />
|
|
837
|
+
<di:waypoint x="816" y="289" />
|
|
723
838
|
<bpmndi:BPMNLabel>
|
|
724
|
-
<dc:Bounds x="
|
|
839
|
+
<dc:Bounds x="1251" y="454" width="81" height="28" />
|
|
725
840
|
</bpmndi:BPMNLabel>
|
|
726
841
|
</bpmndi:BPMNEdge>
|
|
727
842
|
<bpmndi:BPMNEdge id="BPMNEdge_f_trial_sla" bpmnElement="f_trial_sla">
|
|
728
|
-
<di:waypoint x="
|
|
729
|
-
<di:waypoint x="
|
|
730
|
-
<di:waypoint x="
|
|
731
|
-
<di:waypoint x="
|
|
843
|
+
<di:waypoint x="4268" y="467" />
|
|
844
|
+
<di:waypoint x="4268" y="829" />
|
|
845
|
+
<di:waypoint x="3718" y="829" />
|
|
846
|
+
<di:waypoint x="3718" y="849" />
|
|
732
847
|
<bpmndi:BPMNLabel>
|
|
733
|
-
<dc:Bounds x="
|
|
848
|
+
<dc:Bounds x="3956" y="796" width="74" height="28" />
|
|
734
849
|
</bpmndi:BPMNLabel>
|
|
735
850
|
</bpmndi:BPMNEdge>
|
|
736
851
|
<bpmndi:BPMNShape id="BPMNShape_w_start" bpmnElement="w_start">
|
|
737
|
-
<dc:Bounds x="
|
|
852
|
+
<dc:Bounds x="2306" y="142" width="36" height="36" />
|
|
738
853
|
<bpmndi:BPMNLabel>
|
|
739
|
-
<dc:Bounds x="
|
|
854
|
+
<dc:Bounds x="2307" y="183" width="34" height="14" />
|
|
740
855
|
</bpmndi:BPMNLabel>
|
|
741
856
|
</bpmndi:BPMNShape>
|
|
742
857
|
<bpmndi:BPMNShape id="BPMNShape_implement-task" bpmnElement="implement-task">
|
|
743
|
-
<dc:Bounds x="
|
|
858
|
+
<dc:Bounds x="2442" y="120" width="100" height="80" />
|
|
744
859
|
</bpmndi:BPMNShape>
|
|
745
860
|
<bpmndi:BPMNShape id="BPMNShape_w_gw" bpmnElement="w_gw" isMarkerVisible="true">
|
|
746
|
-
<dc:Bounds x="
|
|
861
|
+
<dc:Bounds x="2642" y="135" width="50" height="50" />
|
|
747
862
|
<bpmndi:BPMNLabel>
|
|
748
|
-
<dc:Bounds x="
|
|
863
|
+
<dc:Bounds x="2630" y="116" width="74" height="14" />
|
|
749
864
|
</bpmndi:BPMNLabel>
|
|
750
865
|
</bpmndi:BPMNShape>
|
|
751
866
|
<bpmndi:BPMNShape id="BPMNShape_feature-escalation" bpmnElement="feature-escalation">
|
|
752
|
-
<dc:Bounds x="
|
|
867
|
+
<dc:Bounds x="2792" y="280" width="100" height="80" />
|
|
753
868
|
</bpmndi:BPMNShape>
|
|
754
869
|
<bpmndi:BPMNShape id="BPMNShape_w_gw_answer" bpmnElement="w_gw_answer" isMarkerVisible="true">
|
|
755
|
-
<dc:Bounds x="
|
|
870
|
+
<dc:Bounds x="2992" y="295" width="50" height="50" />
|
|
756
871
|
<bpmndi:BPMNLabel>
|
|
757
|
-
<dc:Bounds x="
|
|
872
|
+
<dc:Bounds x="2989" y="276" width="56" height="14" />
|
|
758
873
|
</bpmndi:BPMNLabel>
|
|
759
874
|
</bpmndi:BPMNShape>
|
|
760
875
|
<bpmndi:BPMNShape id="BPMNShape_w_end" bpmnElement="w_end">
|
|
761
|
-
<dc:Bounds x="
|
|
876
|
+
<dc:Bounds x="3142" y="142" width="36" height="36" />
|
|
762
877
|
<bpmndi:BPMNLabel>
|
|
763
|
-
<dc:Bounds x="
|
|
878
|
+
<dc:Bounds x="3127" y="123" width="66" height="14" />
|
|
764
879
|
</bpmndi:BPMNLabel>
|
|
765
880
|
</bpmndi:BPMNShape>
|
|
766
881
|
<bpmndi:BPMNShape id="BPMNShape_be_feature_sla" bpmnElement="be_feature_sla">
|
|
767
|
-
<dc:Bounds x="
|
|
882
|
+
<dc:Bounds x="2824" y="342" width="36" height="36" />
|
|
768
883
|
<bpmndi:BPMNLabel>
|
|
769
|
-
<dc:Bounds x="
|
|
884
|
+
<dc:Bounds x="2800" y="423" width="84" height="14" />
|
|
770
885
|
</bpmndi:BPMNLabel>
|
|
771
886
|
</bpmndi:BPMNShape>
|
|
772
887
|
<bpmndi:BPMNEdge id="BPMNEdge_w_toImpl" bpmnElement="w_toImpl">
|
|
773
|
-
<di:waypoint x="
|
|
774
|
-
<di:waypoint x="
|
|
888
|
+
<di:waypoint x="2342" y="160" />
|
|
889
|
+
<di:waypoint x="2442" y="160" />
|
|
775
890
|
</bpmndi:BPMNEdge>
|
|
776
891
|
<bpmndi:BPMNEdge id="BPMNEdge_w_toGw" bpmnElement="w_toGw">
|
|
777
|
-
<di:waypoint x="
|
|
778
|
-
<di:waypoint x="
|
|
892
|
+
<di:waypoint x="2542" y="160" />
|
|
893
|
+
<di:waypoint x="2642" y="160" />
|
|
779
894
|
</bpmndi:BPMNEdge>
|
|
780
895
|
<bpmndi:BPMNEdge id="BPMNEdge_w_done" bpmnElement="w_done">
|
|
781
|
-
<di:waypoint x="
|
|
782
|
-
<di:waypoint x="
|
|
896
|
+
<di:waypoint x="2692" y="160" />
|
|
897
|
+
<di:waypoint x="3142" y="160" />
|
|
783
898
|
<bpmndi:BPMNLabel>
|
|
784
|
-
<dc:Bounds x="
|
|
899
|
+
<dc:Bounds x="2901" y="138" width="32" height="14" />
|
|
785
900
|
</bpmndi:BPMNLabel>
|
|
786
901
|
</bpmndi:BPMNEdge>
|
|
787
902
|
<bpmndi:BPMNEdge id="BPMNEdge_w_abandon" bpmnElement="w_abandon">
|
|
788
|
-
<di:waypoint x="
|
|
789
|
-
<di:waypoint x="
|
|
790
|
-
<di:waypoint x="
|
|
903
|
+
<di:waypoint x="3042" y="320" />
|
|
904
|
+
<di:waypoint x="3160" y="320" />
|
|
905
|
+
<di:waypoint x="3160" y="178" />
|
|
791
906
|
<bpmndi:BPMNLabel>
|
|
792
|
-
<dc:Bounds x="
|
|
907
|
+
<dc:Bounds x="3075" y="298" width="53" height="14" />
|
|
793
908
|
</bpmndi:BPMNLabel>
|
|
794
909
|
</bpmndi:BPMNEdge>
|
|
795
910
|
<bpmndi:BPMNEdge id="BPMNEdge_w_escalate" bpmnElement="w_escalate">
|
|
796
|
-
<di:waypoint x="
|
|
797
|
-
<di:waypoint x="
|
|
798
|
-
<di:waypoint x="
|
|
911
|
+
<di:waypoint x="2667" y="185" />
|
|
912
|
+
<di:waypoint x="2667" y="320" />
|
|
913
|
+
<di:waypoint x="2792" y="320" />
|
|
799
914
|
<bpmndi:BPMNLabel>
|
|
800
|
-
<dc:Bounds x="
|
|
915
|
+
<dc:Bounds x="2672" y="246" width="67" height="14" />
|
|
801
916
|
</bpmndi:BPMNLabel>
|
|
802
917
|
</bpmndi:BPMNEdge>
|
|
803
918
|
<bpmndi:BPMNEdge id="BPMNEdge_w_toAnswerGw" bpmnElement="w_toAnswerGw">
|
|
804
|
-
<di:waypoint x="
|
|
805
|
-
<di:waypoint x="
|
|
919
|
+
<di:waypoint x="2892" y="320" />
|
|
920
|
+
<di:waypoint x="2992" y="320" />
|
|
806
921
|
</bpmndi:BPMNEdge>
|
|
807
922
|
<bpmndi:BPMNEdge id="BPMNEdge_w_sla" bpmnElement="w_sla">
|
|
808
|
-
<di:waypoint x="
|
|
809
|
-
<di:waypoint x="
|
|
810
|
-
<di:waypoint x="
|
|
811
|
-
<di:waypoint x="
|
|
923
|
+
<di:waypoint x="2842" y="378" />
|
|
924
|
+
<di:waypoint x="2842" y="398" />
|
|
925
|
+
<di:waypoint x="3160" y="398" />
|
|
926
|
+
<di:waypoint x="3160" y="178" />
|
|
812
927
|
<bpmndi:BPMNLabel>
|
|
813
|
-
<dc:Bounds x="
|
|
928
|
+
<dc:Bounds x="2917" y="365" width="88" height="28" />
|
|
814
929
|
</bpmndi:BPMNLabel>
|
|
815
930
|
</bpmndi:BPMNEdge>
|
|
816
931
|
<bpmndi:BPMNEdge id="BPMNEdge_w_answerLoop" bpmnElement="w_answerLoop">
|
|
817
|
-
<di:waypoint x="
|
|
818
|
-
<di:waypoint x="
|
|
819
|
-
<di:waypoint x="
|
|
820
|
-
<di:waypoint x="
|
|
932
|
+
<di:waypoint x="3017" y="345" />
|
|
933
|
+
<di:waypoint x="3017" y="400" />
|
|
934
|
+
<di:waypoint x="2492" y="400" />
|
|
935
|
+
<di:waypoint x="2492" y="200" />
|
|
936
|
+
<bpmndi:BPMNLabel>
|
|
937
|
+
<dc:Bounds x="2730" y="378" width="49" height="14" />
|
|
938
|
+
</bpmndi:BPMNLabel>
|
|
939
|
+
</bpmndi:BPMNEdge>
|
|
940
|
+
</bpmndi:BPMNPlane>
|
|
941
|
+
</bpmndi:BPMNDiagram>
|
|
942
|
+
<bpmndi:BPMNDiagram id="BPMNDiagram_readiness-preflight">
|
|
943
|
+
<bpmndi:BPMNPlane id="BPMNPlane_readiness-preflight" bpmnElement="readiness-preflight">
|
|
944
|
+
<bpmndi:BPMNShape id="BPMNShape_pf_start" bpmnElement="pf_start">
|
|
945
|
+
<dc:Bounds x="80" y="102" width="36" height="36" />
|
|
946
|
+
<bpmndi:BPMNLabel>
|
|
947
|
+
<dc:Bounds x="61" y="143" width="74" height="28" />
|
|
948
|
+
</bpmndi:BPMNLabel>
|
|
949
|
+
</bpmndi:BPMNShape>
|
|
950
|
+
<bpmndi:BPMNShape id="BPMNShape_preflight-probe" bpmnElement="preflight-probe">
|
|
951
|
+
<dc:Bounds x="216" y="80" width="100" height="80" />
|
|
952
|
+
</bpmndi:BPMNShape>
|
|
953
|
+
<bpmndi:BPMNShape id="BPMNShape_pf_gw" bpmnElement="pf_gw" isMarkerVisible="true">
|
|
954
|
+
<dc:Bounds x="416" y="95" width="50" height="50" />
|
|
955
|
+
<bpmndi:BPMNLabel>
|
|
956
|
+
<dc:Bounds x="344" y="150" width="74" height="28" />
|
|
957
|
+
</bpmndi:BPMNLabel>
|
|
958
|
+
</bpmndi:BPMNShape>
|
|
959
|
+
<bpmndi:BPMNShape id="BPMNShape_readiness-escalation-pf" bpmnElement="readiness-escalation-pf">
|
|
960
|
+
<dc:Bounds x="566" y="80" width="100" height="80" />
|
|
961
|
+
</bpmndi:BPMNShape>
|
|
962
|
+
<bpmndi:BPMNShape id="BPMNShape_pf_gw_res" bpmnElement="pf_gw_res" isMarkerVisible="true">
|
|
963
|
+
<dc:Bounds x="766" y="95" width="50" height="50" />
|
|
964
|
+
<bpmndi:BPMNLabel>
|
|
965
|
+
<dc:Bounds x="751" y="76" width="81" height="14" />
|
|
966
|
+
</bpmndi:BPMNLabel>
|
|
967
|
+
</bpmndi:BPMNShape>
|
|
968
|
+
<bpmndi:BPMNShape id="BPMNShape_pf_end" bpmnElement="pf_end">
|
|
969
|
+
<dc:Bounds x="916" y="102" width="36" height="36" />
|
|
970
|
+
<bpmndi:BPMNLabel>
|
|
971
|
+
<dc:Bounds x="896" y="69" width="76" height="28" />
|
|
972
|
+
</bpmndi:BPMNLabel>
|
|
973
|
+
</bpmndi:BPMNShape>
|
|
974
|
+
<bpmndi:BPMNShape id="BPMNShape_be_pf_probe_timeout" bpmnElement="be_pf_probe_timeout">
|
|
975
|
+
<dc:Bounds x="248" y="142" width="36" height="36" />
|
|
976
|
+
<bpmndi:BPMNLabel>
|
|
977
|
+
<dc:Bounds x="225" y="203" width="83" height="28" />
|
|
978
|
+
</bpmndi:BPMNLabel>
|
|
979
|
+
</bpmndi:BPMNShape>
|
|
980
|
+
<bpmndi:BPMNShape id="BPMNShape_be_pf_sla" bpmnElement="be_pf_sla">
|
|
981
|
+
<dc:Bounds x="598" y="142" width="36" height="36" />
|
|
982
|
+
<bpmndi:BPMNLabel>
|
|
983
|
+
<dc:Bounds x="574" y="223" width="84" height="14" />
|
|
984
|
+
</bpmndi:BPMNLabel>
|
|
985
|
+
</bpmndi:BPMNShape>
|
|
986
|
+
<bpmndi:BPMNEdge id="BPMNEdge_pf_toProbe" bpmnElement="pf_toProbe">
|
|
987
|
+
<di:waypoint x="116" y="120" />
|
|
988
|
+
<di:waypoint x="216" y="120" />
|
|
989
|
+
</bpmndi:BPMNEdge>
|
|
990
|
+
<bpmndi:BPMNEdge id="BPMNEdge_pf_probed" bpmnElement="pf_probed">
|
|
991
|
+
<di:waypoint x="316" y="120" />
|
|
992
|
+
<di:waypoint x="416" y="120" />
|
|
993
|
+
</bpmndi:BPMNEdge>
|
|
994
|
+
<bpmndi:BPMNEdge id="BPMNEdge_pf_escalate" bpmnElement="pf_escalate">
|
|
995
|
+
<di:waypoint x="466" y="120" />
|
|
996
|
+
<di:waypoint x="566" y="120" />
|
|
997
|
+
<bpmndi:BPMNLabel>
|
|
998
|
+
<dc:Bounds x="480" y="98" width="53" height="14" />
|
|
999
|
+
</bpmndi:BPMNLabel>
|
|
1000
|
+
</bpmndi:BPMNEdge>
|
|
1001
|
+
<bpmndi:BPMNEdge id="BPMNEdge_pf_toResolution" bpmnElement="pf_toResolution">
|
|
1002
|
+
<di:waypoint x="666" y="120" />
|
|
1003
|
+
<di:waypoint x="766" y="120" />
|
|
1004
|
+
</bpmndi:BPMNEdge>
|
|
1005
|
+
<bpmndi:BPMNEdge id="BPMNEdge_pf_proceed" bpmnElement="pf_proceed">
|
|
1006
|
+
<di:waypoint x="816" y="120" />
|
|
1007
|
+
<di:waypoint x="916" y="120" />
|
|
1008
|
+
<bpmndi:BPMNLabel>
|
|
1009
|
+
<dc:Bounds x="824" y="128" width="84" height="14" />
|
|
1010
|
+
</bpmndi:BPMNLabel>
|
|
1011
|
+
</bpmndi:BPMNEdge>
|
|
1012
|
+
<bpmndi:BPMNEdge id="BPMNEdge_pf_ready" bpmnElement="pf_ready">
|
|
1013
|
+
<di:waypoint x="441" y="145" />
|
|
1014
|
+
<di:waypoint x="441" y="200" />
|
|
1015
|
+
<di:waypoint x="934" y="200" />
|
|
1016
|
+
<di:waypoint x="934" y="138" />
|
|
1017
|
+
<bpmndi:BPMNLabel>
|
|
1018
|
+
<dc:Bounds x="668" y="178" width="39" height="14" />
|
|
1019
|
+
</bpmndi:BPMNLabel>
|
|
1020
|
+
</bpmndi:BPMNEdge>
|
|
1021
|
+
<bpmndi:BPMNEdge id="BPMNEdge_pf_abandon" bpmnElement="pf_abandon">
|
|
1022
|
+
<di:waypoint x="816" y="120" />
|
|
1023
|
+
<di:waypoint x="916" y="120" />
|
|
1024
|
+
<bpmndi:BPMNLabel>
|
|
1025
|
+
<dc:Bounds x="840" y="158" width="53" height="14" />
|
|
1026
|
+
</bpmndi:BPMNLabel>
|
|
1027
|
+
</bpmndi:BPMNEdge>
|
|
1028
|
+
<bpmndi:BPMNEdge id="BPMNEdge_pf_probeTimedOut" bpmnElement="pf_probeTimedOut">
|
|
1029
|
+
<di:waypoint x="266" y="178" />
|
|
1030
|
+
<di:waypoint x="266" y="198" />
|
|
1031
|
+
<di:waypoint x="336" y="198" />
|
|
1032
|
+
<di:waypoint x="336" y="82" />
|
|
1033
|
+
<di:waypoint x="546" y="82" />
|
|
1034
|
+
<di:waypoint x="546" y="120" />
|
|
1035
|
+
<di:waypoint x="566" y="120" />
|
|
1036
|
+
<bpmndi:BPMNLabel>
|
|
1037
|
+
<dc:Bounds x="341" y="93" width="67" height="14" />
|
|
1038
|
+
</bpmndi:BPMNLabel>
|
|
1039
|
+
</bpmndi:BPMNEdge>
|
|
1040
|
+
<bpmndi:BPMNEdge id="BPMNEdge_pf_sla" bpmnElement="pf_sla">
|
|
1041
|
+
<di:waypoint x="616" y="178" />
|
|
1042
|
+
<di:waypoint x="616" y="198" />
|
|
1043
|
+
<di:waypoint x="934" y="198" />
|
|
1044
|
+
<di:waypoint x="934" y="138" />
|
|
821
1045
|
<bpmndi:BPMNLabel>
|
|
822
|
-
<dc:Bounds x="
|
|
1046
|
+
<dc:Bounds x="731" y="165" width="88" height="28" />
|
|
823
1047
|
</bpmndi:BPMNLabel>
|
|
824
1048
|
</bpmndi:BPMNEdge>
|
|
825
1049
|
</bpmndi:BPMNPlane>
|