@nanobpm/nano-workforce 0.97.0 → 0.98.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.
@@ -5,6 +5,14 @@
5
5
  <zeebe:subscription correlationKey="=planKey" />
6
6
  </bpmn:extensionElements>
7
7
  </bpmn:message>
8
+ <bpmn:message id="Message_capsResolved" name="caps-resolved">
9
+ <bpmn:extensionElements>
10
+ <zeebe:subscription correlationKey="=capsGateKey" />
11
+ <zeebe:properties>
12
+ <zeebe:property name="io.nanobpm.dataEnvelope.in" value="CapsResolved" />
13
+ </zeebe:properties>
14
+ </bpmn:extensionElements>
15
+ </bpmn:message>
8
16
  <bpmn:process id="plan-fanout" name="Agent Fleet — plan &#38; implement" isExecutable="true">
9
17
  <bpmn:extensionElements>
10
18
  <nano:shapes>
@@ -12,11 +20,17 @@
12
20
  <nano:extend name="repo" type="string" />
13
21
  <nano:extend name="baseBranch" type="string" />
14
22
  </nano:shape>
23
+ <nano:shape id="CapabilityNeed" name="Cross-repo capability dependency (issue #289)">
24
+ <nano:extend name="capabilityRef" type="string" />
25
+ <nano:extend name="package" type="string" />
26
+ <nano:extend name="verifyCommand" type="string" optional="true" />
27
+ </nano:shape>
15
28
  <nano:shape id="RecordPlanTask" name="Record plan — raw planner task">
16
29
  <nano:extend name="id" type="string" optional="true" />
17
30
  <nano:extend name="title" type="string" optional="true" />
18
31
  <nano:extend name="prompt" type="string" optional="true" />
19
32
  <nano:extend name="dependsOn" type="string" list="true" optional="true" />
33
+ <nano:reference name="needs" ref="CapabilityNeed" list="true" optional="true" />
20
34
  </nano:shape>
21
35
  <nano:shape id="RecordPlanIn" name="Record plan — input">
22
36
  <nano:extend name="planKey" type="string" />
@@ -80,6 +94,18 @@
80
94
  <nano:shape id="RecordResultsIn" name="Finalize plan — input">
81
95
  <nano:extend name="planKey" type="string" />
82
96
  </nano:shape>
97
+ <nano:shape id="CapsResolved" name="caps-resolved message payload (issue #289)">
98
+ <nano:extend name="resolvedDepsBrief" type="string" optional="true" />
99
+ </nano:shape>
100
+ <nano:shape id="CapsPrepareIn" name="Prepare capability barrier — input (issue #289)">
101
+ <nano:extend name="planKey" type="string" />
102
+ <nano:extend name="taskId" type="string" />
103
+ <nano:reference name="needs" ref="CapabilityNeed" list="true" optional="true" />
104
+ </nano:shape>
105
+ <nano:shape id="CapsPrepareOut" name="Prepare capability barrier — output (issue #289)">
106
+ <nano:extend name="capsGateKey" type="string" />
107
+ <nano:extend name="hasNeeds" type="boolean" />
108
+ </nano:shape>
83
109
  </nano:shapes>
84
110
  </bpmn:extensionElements>
85
111
  <bpmn:startEvent id="Start" name="Issue submitted">
@@ -274,6 +300,7 @@
274
300
  <zeebe:input source="=null" target="summary" />
275
301
  <zeebe:input source="=null" target="pr" />
276
302
  <zeebe:input source="=null" target="delta" />
303
+ <zeebe:input source="=null" target="resolvedDepsBrief" />
277
304
  </zeebe:ioMapping>
278
305
  </bpmn:extensionElements>
279
306
  <bpmn:incoming>f_toImplement</bpmn:incoming>
@@ -284,8 +311,53 @@
284
311
  </bpmn:extensionElements>
285
312
  </bpmn:multiInstanceLoopCharacteristics>
286
313
  <bpmn:startEvent id="w_start" name="Task">
287
- <bpmn:outgoing>w_toImpl</bpmn:outgoing>
314
+ <bpmn:outgoing>w_toCapsPrepare</bpmn:outgoing>
288
315
  </bpmn:startEvent>
316
+ <bpmn:serviceTask id="caps-prepare" name="Prepare capability barrier">
317
+ <bpmn:extensionElements>
318
+ <zeebe:taskDefinition type="pr.caps-prepare" />
319
+ <zeebe:properties>
320
+ <zeebe:property name="io.nanobpm.dataEnvelope.in" value="CapsPrepareIn" />
321
+ <zeebe:property name="io.nanobpm.dataEnvelope.out" value="CapsPrepareOut" />
322
+ </zeebe:properties>
323
+ <zeebe:ioMapping>
324
+ <zeebe:input source="=planKey" target="planKey" />
325
+ <zeebe:input source="=task.id" target="taskId" />
326
+ <zeebe:input source="=task.needs" target="needs" />
327
+ <zeebe:output source="=capsGateKey" target="capsGateKey" />
328
+ <zeebe:output source="=hasNeeds" target="hasNeeds" />
329
+ </zeebe:ioMapping>
330
+ </bpmn:extensionElements>
331
+ <bpmn:incoming>w_toCapsPrepare</bpmn:incoming>
332
+ <bpmn:outgoing>w_toNeedsGw</bpmn:outgoing>
333
+ </bpmn:serviceTask>
334
+ <bpmn:exclusiveGateway id="w_gw_needs" name="capability needs?" default="w_noNeeds">
335
+ <bpmn:incoming>w_toNeedsGw</bpmn:incoming>
336
+ <bpmn:outgoing>w_toWaitCaps</bpmn:outgoing>
337
+ <bpmn:outgoing>w_noNeeds</bpmn:outgoing>
338
+ </bpmn:exclusiveGateway>
339
+ <bpmn:eventBasedGateway id="w_gw_caps" name="resolved or timeout?">
340
+ <bpmn:incoming>w_toWaitCaps</bpmn:incoming>
341
+ <bpmn:outgoing>w_capsToWait</bpmn:outgoing>
342
+ <bpmn:outgoing>w_capsToTimeout</bpmn:outgoing>
343
+ </bpmn:eventBasedGateway>
344
+ <bpmn:intermediateCatchEvent id="wait-caps-resolved" name="Wait: capabilities resolved">
345
+ <bpmn:incoming>w_capsToWait</bpmn:incoming>
346
+ <bpmn:outgoing>w_capsResolved</bpmn:outgoing>
347
+ <bpmn:messageEventDefinition id="med_capsResolved" messageRef="Message_capsResolved" />
348
+ </bpmn:intermediateCatchEvent>
349
+ <bpmn:intermediateCatchEvent id="wait-caps-timeout" name="Wait: capability SLA elapsed">
350
+ <bpmn:extensionElements>
351
+ <zeebe:ioMapping>
352
+ <zeebe:output source="=&#34;A cross-repo capability this task depends on did not resolve within the bounded wait. This usually means a declared capabilityRef names no owner/repo releases source (unresolvable) or the upstream capability never shipped. Correct the plan&#39;s capabilityRef or ship the capability, then answer to retry the task, or abandon it.&#34;" target="question" />
353
+ </zeebe:ioMapping>
354
+ </bpmn:extensionElements>
355
+ <bpmn:incoming>w_capsToTimeout</bpmn:incoming>
356
+ <bpmn:outgoing>w_capsTimeout</bpmn:outgoing>
357
+ <bpmn:timerEventDefinition id="ted_caps_timeout">
358
+ <bpmn:timeDuration xsi:type="bpmn:tFormalExpression">=capsWaitTimeout</bpmn:timeDuration>
359
+ </bpmn:timerEventDefinition>
360
+ </bpmn:intermediateCatchEvent>
289
361
  <bpmn:serviceTask id="implement-task" name="Implement (agent)">
290
362
  <bpmn:extensionElements>
291
363
  <zeebe:taskDefinition type="senior:feature" />
@@ -293,12 +365,13 @@
293
365
  <zeebe:linkedResource resourceId="feature.md" bindingType="latest" resourceType="GenericScript" linkName="prompt" />
294
366
  </zeebe:linkedResources>
295
367
  <zeebe:ioMapping>
296
- <zeebe:input source="=&#34;&#10;&#10;---&#10;&#10;&#34; + task.prompt + (if (blackboardBrief = null) then &#34;&#34; else blackboardBrief) + (if (baseBranchBrief = null) then &#34;&#34; else baseBranchBrief) + (if (resolvedArtifacts = null or count(resolvedArtifacts[item != null]) = 0) then &#34;&#34; else (&#34;&#10;&#10;---&#10;&#10;**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:&#10;&#10;&#34; + string join(resolvedArtifacts[item != null], &#34;&#10;&#34;)))" target="appendPrompt" />
368
+ <zeebe:input source="=&#34;&#10;&#10;---&#10;&#10;&#34; + task.prompt + (if (blackboardBrief = null) then &#34;&#34; else blackboardBrief) + (if (baseBranchBrief = null) then &#34;&#34; else baseBranchBrief) + (if (resolvedDepsBrief = null) then &#34;&#34; else resolvedDepsBrief) + (if (resolvedArtifacts = null or count(resolvedArtifacts[item != null]) = 0) then &#34;&#34; else (&#34;&#10;&#10;---&#10;&#10;**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:&#10;&#10;&#34; + string join(resolvedArtifacts[item != null], &#34;&#10;&#34;)))" target="appendPrompt" />
297
369
  <zeebe:output source="=status" target="status" />
298
370
  <zeebe:output source="=question" target="question" />
299
371
  </zeebe:ioMapping>
300
372
  </bpmn:extensionElements>
301
- <bpmn:incoming>w_toImpl</bpmn:incoming>
373
+ <bpmn:incoming>w_noNeeds</bpmn:incoming>
374
+ <bpmn:incoming>w_capsResolved</bpmn:incoming>
302
375
  <bpmn:incoming>w_answerLoop</bpmn:incoming>
303
376
  <bpmn:outgoing>w_toGw</bpmn:outgoing>
304
377
  </bpmn:serviceTask>
@@ -314,6 +387,7 @@
314
387
  <zeebe:assignmentDefinition candidateGroups="operators" assignee="=escalationAssignee" />
315
388
  </bpmn:extensionElements>
316
389
  <bpmn:incoming>w_escalate</bpmn:incoming>
390
+ <bpmn:incoming>w_capsTimeout</bpmn:incoming>
317
391
  <bpmn:outgoing>w_toAnswerGw</bpmn:outgoing>
318
392
  </bpmn:userTask>
319
393
  <bpmn:boundaryEvent id="be_feature_sla" name="SLA elapsed" attachedToRef="feature-escalation">
@@ -332,7 +406,16 @@
332
406
  <bpmn:incoming>w_abandon</bpmn:incoming>
333
407
  <bpmn:incoming>w_sla</bpmn:incoming>
334
408
  </bpmn:endEvent>
335
- <bpmn:sequenceFlow id="w_toImpl" sourceRef="w_start" targetRef="implement-task" />
409
+ <bpmn:sequenceFlow id="w_toCapsPrepare" sourceRef="w_start" targetRef="caps-prepare" />
410
+ <bpmn:sequenceFlow id="w_toNeedsGw" sourceRef="caps-prepare" targetRef="w_gw_needs" />
411
+ <bpmn:sequenceFlow id="w_toWaitCaps" name="needs" sourceRef="w_gw_needs" targetRef="w_gw_caps">
412
+ <bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">=hasNeeds</bpmn:conditionExpression>
413
+ </bpmn:sequenceFlow>
414
+ <bpmn:sequenceFlow id="w_capsToWait" sourceRef="w_gw_caps" targetRef="wait-caps-resolved" />
415
+ <bpmn:sequenceFlow id="w_capsToTimeout" sourceRef="w_gw_caps" targetRef="wait-caps-timeout" />
416
+ <bpmn:sequenceFlow id="w_capsTimeout" name="caps SLA" sourceRef="wait-caps-timeout" targetRef="feature-escalation" />
417
+ <bpmn:sequenceFlow id="w_noNeeds" name="none" sourceRef="w_gw_needs" targetRef="implement-task" />
418
+ <bpmn:sequenceFlow id="w_capsResolved" sourceRef="wait-caps-resolved" targetRef="implement-task" />
336
419
  <bpmn:sequenceFlow id="w_toGw" sourceRef="implement-task" targetRef="w_gw" />
337
420
  <bpmn:sequenceFlow id="w_escalate" name="escalated" sourceRef="w_gw" targetRef="feature-escalation">
338
421
  <bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">=status = "escalated" and question != null and trim(question) != ""</bpmn:conditionExpression>
@@ -508,344 +591,344 @@
508
591
  <bpmndi:BPMNDiagram id="BPMNDiagram_plan-fanout">
509
592
  <bpmndi:BPMNPlane id="BPMNPlane_plan-fanout" bpmnElement="plan-fanout">
510
593
  <bpmndi:BPMNShape id="BPMNShape_Start" bpmnElement="Start">
511
- <dc:Bounds x="80" y="231" width="36" height="36" />
594
+ <dc:Bounds x="80" y="291" width="36" height="36" />
512
595
  <bpmndi:BPMNLabel>
513
- <dc:Bounds x="63" y="272" width="70" height="28" />
596
+ <dc:Bounds x="63" y="332" width="70" height="28" />
514
597
  </bpmndi:BPMNLabel>
515
598
  </bpmndi:BPMNShape>
516
599
  <bpmndi:BPMNShape id="BPMNShape_gw-readiness" bpmnElement="gw-readiness" isMarkerVisible="true">
517
- <dc:Bounds x="216" y="224" width="50" height="50" />
600
+ <dc:Bounds x="216" y="284" width="50" height="50" />
518
601
  <bpmndi:BPMNLabel>
519
- <dc:Bounds x="204" y="163" width="74" height="56" />
602
+ <dc:Bounds x="204" y="223" width="74" height="56" />
520
603
  </bpmndi:BPMNLabel>
521
604
  </bpmndi:BPMNShape>
522
605
  <bpmndi:BPMNShape id="BPMNShape_readiness-preflight" bpmnElement="readiness-preflight">
523
- <dc:Bounds x="366" y="369" width="100" height="80" />
606
+ <dc:Bounds x="366" y="429" width="100" height="80" />
524
607
  </bpmndi:BPMNShape>
525
608
  <bpmndi:BPMNShape id="BPMNShape_ensure-base-branch" bpmnElement="ensure-base-branch">
526
- <dc:Bounds x="566" y="209" width="100" height="80" />
609
+ <dc:Bounds x="566" y="269" width="100" height="80" />
527
610
  </bpmndi:BPMNShape>
528
611
  <bpmndi:BPMNShape id="BPMNShape_plan" bpmnElement="plan">
529
- <dc:Bounds x="766" y="209" width="100" height="80" />
612
+ <dc:Bounds x="766" y="269" width="100" height="80" />
530
613
  </bpmndi:BPMNShape>
531
614
  <bpmndi:BPMNShape id="BPMNShape_record-plan" bpmnElement="record-plan">
532
- <dc:Bounds x="966" y="209" width="100" height="80" />
615
+ <dc:Bounds x="966" y="269" width="100" height="80" />
533
616
  </bpmndi:BPMNShape>
534
617
  <bpmndi:BPMNShape id="BPMNShape_review-plan" bpmnElement="review-plan">
535
- <dc:Bounds x="1166" y="209" width="100" height="80" />
618
+ <dc:Bounds x="1166" y="269" width="100" height="80" />
536
619
  </bpmndi:BPMNShape>
537
620
  <bpmndi:BPMNShape id="BPMNShape_record-plan-review" bpmnElement="record-plan-review">
538
- <dc:Bounds x="1366" y="209" width="100" height="80" />
621
+ <dc:Bounds x="1366" y="269" width="100" height="80" />
539
622
  </bpmndi:BPMNShape>
540
623
  <bpmndi:BPMNShape id="BPMNShape_gw-plan-review" bpmnElement="gw-plan-review" isMarkerVisible="true">
541
- <dc:Bounds x="1566" y="224" width="50" height="50" />
624
+ <dc:Bounds x="1566" y="284" width="50" height="50" />
542
625
  <bpmndi:BPMNLabel>
543
- <dc:Bounds x="1518" y="279" width="67" height="28" />
626
+ <dc:Bounds x="1518" y="339" width="67" height="28" />
544
627
  </bpmndi:BPMNLabel>
545
628
  </bpmndi:BPMNShape>
546
629
  <bpmndi:BPMNShape id="BPMNShape_plan-review-decision" bpmnElement="plan-review-decision">
547
- <dc:Bounds x="1716" y="369" width="100" height="80" />
630
+ <dc:Bounds x="1716" y="429" width="100" height="80" />
548
631
  </bpmndi:BPMNShape>
549
632
  <bpmndi:BPMNShape id="BPMNShape_gw-plan-answer" bpmnElement="gw-plan-answer" isMarkerVisible="true">
550
- <dc:Bounds x="1916" y="384" width="50" height="50" />
633
+ <dc:Bounds x="1916" y="444" width="50" height="50" />
551
634
  <bpmndi:BPMNLabel>
552
- <dc:Bounds x="1971" y="395" width="67" height="28" />
635
+ <dc:Bounds x="1971" y="455" width="67" height="28" />
553
636
  </bpmndi:BPMNLabel>
554
637
  </bpmndi:BPMNShape>
555
638
  <bpmndi:BPMNShape id="BPMNShape_select-wave" bpmnElement="select-wave">
556
- <dc:Bounds x="2066" y="209" width="100" height="80" />
639
+ <dc:Bounds x="2066" y="269" width="100" height="80" />
557
640
  </bpmndi:BPMNShape>
558
641
  <bpmndi:BPMNShape id="BPMNShape_implement" bpmnElement="implement" isExpanded="true">
559
- <dc:Bounds x="2266" y="80" width="952" height="338" />
642
+ <dc:Bounds x="2266" y="80" width="1588" height="458" />
560
643
  </bpmndi:BPMNShape>
561
644
  <bpmndi:BPMNShape id="BPMNShape_record-wave" bpmnElement="record-wave">
562
- <dc:Bounds x="3318" y="209" width="100" height="80" />
645
+ <dc:Bounds x="3954" y="269" width="100" height="80" />
563
646
  </bpmndi:BPMNShape>
564
647
  <bpmndi:BPMNShape id="BPMNShape_gw-trial-needed" bpmnElement="gw-trial-needed" isMarkerVisible="true">
565
- <dc:Bounds x="3518" y="224" width="50" height="50" />
648
+ <dc:Bounds x="4154" y="284" width="50" height="50" />
566
649
  <bpmndi:BPMNLabel>
567
- <dc:Bounds x="3499" y="205" width="88" height="14" />
650
+ <dc:Bounds x="4135" y="265" width="88" height="14" />
568
651
  </bpmndi:BPMNLabel>
569
652
  </bpmndi:BPMNShape>
570
653
  <bpmndi:BPMNShape id="BPMNShape_trial-merge" bpmnElement="trial-merge">
571
- <dc:Bounds x="3668" y="849" width="100" height="80" />
654
+ <dc:Bounds x="4304" y="909" width="100" height="80" />
572
655
  </bpmndi:BPMNShape>
573
656
  <bpmndi:BPMNShape id="BPMNShape_record-trial-merge" bpmnElement="record-trial-merge">
574
- <dc:Bounds x="3868" y="849" width="100" height="80" />
657
+ <dc:Bounds x="4504" y="909" width="100" height="80" />
575
658
  </bpmndi:BPMNShape>
576
659
  <bpmndi:BPMNShape id="BPMNShape_gw-trial" bpmnElement="gw-trial" isMarkerVisible="true">
577
- <dc:Bounds x="4068" y="864" width="50" height="50" />
660
+ <dc:Bounds x="4704" y="924" width="50" height="50" />
578
661
  <bpmndi:BPMNLabel>
579
- <dc:Bounds x="4058" y="919" width="71" height="14" />
662
+ <dc:Bounds x="4694" y="979" width="71" height="14" />
580
663
  </bpmndi:BPMNLabel>
581
664
  </bpmndi:BPMNShape>
582
665
  <bpmndi:BPMNShape id="BPMNShape_trial-merge-decision" bpmnElement="trial-merge-decision">
583
- <dc:Bounds x="4218" y="369" width="100" height="80" />
666
+ <dc:Bounds x="4854" y="429" width="100" height="80" />
584
667
  </bpmndi:BPMNShape>
585
668
  <bpmndi:BPMNShape id="BPMNShape_resolve-trial-attention" bpmnElement="resolve-trial-attention">
586
- <dc:Bounds x="4418" y="369" width="100" height="80" />
669
+ <dc:Bounds x="5054" y="429" width="100" height="80" />
587
670
  </bpmndi:BPMNShape>
588
671
  <bpmndi:BPMNShape id="BPMNShape_gw-trial-answer" bpmnElement="gw-trial-answer" isMarkerVisible="true">
589
- <dc:Bounds x="4618" y="384" width="50" height="50" />
672
+ <dc:Bounds x="5254" y="444" width="50" height="50" />
590
673
  <bpmndi:BPMNLabel>
591
- <dc:Bounds x="4617" y="439" width="53" height="14" />
674
+ <dc:Bounds x="5253" y="499" width="53" height="14" />
592
675
  </bpmndi:BPMNLabel>
593
676
  </bpmndi:BPMNShape>
594
677
  <bpmndi:BPMNShape id="BPMNShape_gw-more" bpmnElement="gw-more" isMarkerVisible="true">
595
- <dc:Bounds x="4768" y="224" width="50" height="50" />
678
+ <dc:Bounds x="5404" y="284" width="50" height="50" />
596
679
  <bpmndi:BPMNLabel>
597
- <dc:Bounds x="4691" y="279" width="84" height="14" />
680
+ <dc:Bounds x="5327" y="339" width="84" height="14" />
598
681
  </bpmndi:BPMNLabel>
599
682
  </bpmndi:BPMNShape>
600
683
  <bpmndi:BPMNShape id="BPMNShape_wait-wave-merged" bpmnElement="wait-wave-merged">
601
- <dc:Bounds x="4950" y="391" width="36" height="36" />
684
+ <dc:Bounds x="5586" y="451" width="36" height="36" />
602
685
  <bpmndi:BPMNLabel>
603
- <dc:Bounds x="4929" y="358" width="78" height="28" />
686
+ <dc:Bounds x="5565" y="418" width="78" height="28" />
604
687
  </bpmndi:BPMNLabel>
605
688
  </bpmndi:BPMNShape>
606
689
  <bpmndi:BPMNShape id="BPMNShape_record-results" bpmnElement="record-results">
607
- <dc:Bounds x="4918" y="209" width="100" height="80" />
690
+ <dc:Bounds x="5554" y="269" width="100" height="80" />
608
691
  </bpmndi:BPMNShape>
609
692
  <bpmndi:BPMNShape id="BPMNShape_End" bpmnElement="End">
610
- <dc:Bounds x="5118" y="231" width="36" height="36" />
693
+ <dc:Bounds x="5754" y="291" width="36" height="36" />
611
694
  <bpmndi:BPMNLabel>
612
- <dc:Bounds x="5099" y="272" width="74" height="28" />
695
+ <dc:Bounds x="5735" y="332" width="74" height="28" />
613
696
  </bpmndi:BPMNLabel>
614
697
  </bpmndi:BPMNShape>
615
698
  <bpmndi:BPMNShape id="BPMNShape_be_plan_sla" bpmnElement="be_plan_sla">
616
- <dc:Bounds x="1748" y="431" width="36" height="36" />
699
+ <dc:Bounds x="1748" y="491" width="36" height="36" />
617
700
  <bpmndi:BPMNLabel>
618
- <dc:Bounds x="1724" y="512" width="84" height="14" />
701
+ <dc:Bounds x="1724" y="572" width="84" height="14" />
619
702
  </bpmndi:BPMNLabel>
620
703
  </bpmndi:BPMNShape>
621
704
  <bpmndi:BPMNShape id="BPMNShape_be_trial_sla" bpmnElement="be_trial_sla">
622
- <dc:Bounds x="4250" y="431" width="36" height="36" />
705
+ <dc:Bounds x="4886" y="491" width="36" height="36" />
623
706
  <bpmndi:BPMNLabel>
624
- <dc:Bounds x="4166" y="512" width="84" height="14" />
707
+ <dc:Bounds x="4802" y="532" width="84" height="14" />
625
708
  </bpmndi:BPMNLabel>
626
709
  </bpmndi:BPMNShape>
627
710
  <bpmndi:BPMNEdge id="BPMNEdge_f_toReadinessGw" bpmnElement="f_toReadinessGw">
628
- <di:waypoint x="116" y="249" />
629
- <di:waypoint x="216" y="249" />
711
+ <di:waypoint x="116" y="309" />
712
+ <di:waypoint x="216" y="309" />
630
713
  </bpmndi:BPMNEdge>
631
714
  <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" />
715
+ <di:waypoint x="266" y="309" />
716
+ <di:waypoint x="566" y="309" />
634
717
  <bpmndi:BPMNLabel>
635
- <dc:Bounds x="400" y="227" width="32" height="14" />
718
+ <dc:Bounds x="400" y="287" width="32" height="14" />
636
719
  </bpmndi:BPMNLabel>
637
720
  </bpmndi:BPMNEdge>
638
721
  <bpmndi:BPMNEdge id="BPMNEdge_f_toPlan" bpmnElement="f_toPlan">
639
- <di:waypoint x="666" y="249" />
640
- <di:waypoint x="766" y="249" />
722
+ <di:waypoint x="666" y="309" />
723
+ <di:waypoint x="766" y="309" />
641
724
  </bpmndi:BPMNEdge>
642
725
  <bpmndi:BPMNEdge id="BPMNEdge_f_toRecordPlan" bpmnElement="f_toRecordPlan">
643
- <di:waypoint x="866" y="249" />
644
- <di:waypoint x="966" y="249" />
726
+ <di:waypoint x="866" y="309" />
727
+ <di:waypoint x="966" y="309" />
645
728
  </bpmndi:BPMNEdge>
646
729
  <bpmndi:BPMNEdge id="BPMNEdge_f_toReviewPlan" bpmnElement="f_toReviewPlan">
647
- <di:waypoint x="1066" y="249" />
648
- <di:waypoint x="1166" y="249" />
730
+ <di:waypoint x="1066" y="309" />
731
+ <di:waypoint x="1166" y="309" />
649
732
  </bpmndi:BPMNEdge>
650
733
  <bpmndi:BPMNEdge id="BPMNEdge_f_toRecordPlanReview" bpmnElement="f_toRecordPlanReview">
651
- <di:waypoint x="1266" y="249" />
652
- <di:waypoint x="1366" y="249" />
734
+ <di:waypoint x="1266" y="309" />
735
+ <di:waypoint x="1366" y="309" />
653
736
  </bpmndi:BPMNEdge>
654
737
  <bpmndi:BPMNEdge id="BPMNEdge_f_toGwPlanReview" bpmnElement="f_toGwPlanReview">
655
- <di:waypoint x="1466" y="249" />
656
- <di:waypoint x="1566" y="249" />
738
+ <di:waypoint x="1466" y="309" />
739
+ <di:waypoint x="1566" y="309" />
657
740
  </bpmndi:BPMNEdge>
658
741
  <bpmndi:BPMNEdge id="BPMNEdge_f_plan_proceed" bpmnElement="f_plan_proceed">
659
- <di:waypoint x="1616" y="249" />
660
- <di:waypoint x="2066" y="249" />
742
+ <di:waypoint x="1616" y="309" />
743
+ <di:waypoint x="2066" y="309" />
661
744
  <bpmndi:BPMNLabel>
662
- <dc:Bounds x="1749" y="227" width="60" height="14" />
745
+ <dc:Bounds x="1749" y="287" width="60" height="14" />
663
746
  </bpmndi:BPMNLabel>
664
747
  </bpmndi:BPMNEdge>
665
748
  <bpmndi:BPMNEdge id="BPMNEdge_f_toImplement" bpmnElement="f_toImplement">
666
- <di:waypoint x="2166" y="249" />
667
- <di:waypoint x="2266" y="249" />
749
+ <di:waypoint x="2166" y="309" />
750
+ <di:waypoint x="2266" y="309" />
668
751
  </bpmndi:BPMNEdge>
669
752
  <bpmndi:BPMNEdge id="BPMNEdge_f_toRecordWave" bpmnElement="f_toRecordWave">
670
- <di:waypoint x="3218" y="249" />
671
- <di:waypoint x="3318" y="249" />
753
+ <di:waypoint x="3854" y="309" />
754
+ <di:waypoint x="3954" y="309" />
672
755
  </bpmndi:BPMNEdge>
673
756
  <bpmndi:BPMNEdge id="BPMNEdge_f_toTrialNeeded" bpmnElement="f_toTrialNeeded">
674
- <di:waypoint x="3418" y="249" />
675
- <di:waypoint x="3518" y="249" />
757
+ <di:waypoint x="4054" y="309" />
758
+ <di:waypoint x="4154" y="309" />
676
759
  </bpmndi:BPMNEdge>
677
760
  <bpmndi:BPMNEdge id="BPMNEdge_f_skipTrialMerge" bpmnElement="f_skipTrialMerge">
678
- <di:waypoint x="3568" y="249" />
679
- <di:waypoint x="4768" y="249" />
761
+ <di:waypoint x="4204" y="309" />
762
+ <di:waypoint x="5404" y="309" />
680
763
  <bpmndi:BPMNLabel>
681
- <dc:Bounds x="4090" y="227" width="32" height="14" />
764
+ <dc:Bounds x="4726" y="287" width="32" height="14" />
682
765
  </bpmndi:BPMNLabel>
683
766
  </bpmndi:BPMNEdge>
684
767
  <bpmndi:BPMNEdge id="BPMNEdge_f_done" bpmnElement="f_done">
685
- <di:waypoint x="4818" y="249" />
686
- <di:waypoint x="4918" y="249" />
768
+ <di:waypoint x="5454" y="309" />
769
+ <di:waypoint x="5554" y="309" />
687
770
  <bpmndi:BPMNLabel>
688
- <dc:Bounds x="4852" y="227" width="32" height="14" />
771
+ <dc:Bounds x="5488" y="287" width="32" height="14" />
689
772
  </bpmndi:BPMNLabel>
690
773
  </bpmndi:BPMNEdge>
691
774
  <bpmndi:BPMNEdge id="BPMNEdge_f_toEnd" bpmnElement="f_toEnd">
692
- <di:waypoint x="5018" y="249" />
693
- <di:waypoint x="5118" y="249" />
775
+ <di:waypoint x="5654" y="309" />
776
+ <di:waypoint x="5754" y="309" />
694
777
  </bpmndi:BPMNEdge>
695
778
  <bpmndi:BPMNEdge id="BPMNEdge_f_plan_answer_revise" bpmnElement="f_plan_answer_revise">
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" />
779
+ <di:waypoint x="1941" y="494" />
780
+ <di:waypoint x="1941" y="549" />
781
+ <di:waypoint x="816" y="549" />
782
+ <di:waypoint x="816" y="349" />
700
783
  <bpmndi:BPMNLabel>
701
- <dc:Bounds x="1356" y="467" width="46" height="14" />
784
+ <dc:Bounds x="1356" y="527" width="46" height="14" />
702
785
  </bpmndi:BPMNLabel>
703
786
  </bpmndi:BPMNEdge>
704
787
  <bpmndi:BPMNEdge id="BPMNEdge_f_toRecordTrialMerge" bpmnElement="f_toRecordTrialMerge">
705
- <di:waypoint x="3768" y="889" />
706
- <di:waypoint x="3868" y="889" />
788
+ <di:waypoint x="4404" y="949" />
789
+ <di:waypoint x="4504" y="949" />
707
790
  </bpmndi:BPMNEdge>
708
791
  <bpmndi:BPMNEdge id="BPMNEdge_f_toGwTrial" bpmnElement="f_toGwTrial">
709
- <di:waypoint x="3968" y="889" />
710
- <di:waypoint x="4068" y="889" />
792
+ <di:waypoint x="4604" y="949" />
793
+ <di:waypoint x="4704" y="949" />
711
794
  </bpmndi:BPMNEdge>
712
795
  <bpmndi:BPMNEdge id="BPMNEdge_f_trialProceed" bpmnElement="f_trialProceed">
713
- <di:waypoint x="4118" y="889" />
714
- <di:waypoint x="4793" y="889" />
715
- <di:waypoint x="4793" y="274" />
796
+ <di:waypoint x="4754" y="949" />
797
+ <di:waypoint x="5429" y="949" />
798
+ <di:waypoint x="5429" y="334" />
716
799
  <bpmndi:BPMNLabel>
717
- <dc:Bounds x="4429" y="867" width="53" height="14" />
800
+ <dc:Bounds x="5065" y="927" width="53" height="14" />
718
801
  </bpmndi:BPMNLabel>
719
802
  </bpmndi:BPMNEdge>
720
803
  <bpmndi:BPMNEdge id="BPMNEdge_f_trialAnswerRerun" bpmnElement="f_trialAnswerRerun">
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" />
804
+ <di:waypoint x="5279" y="444" />
805
+ <di:waypoint x="5279" y="409" />
806
+ <di:waypoint x="4354" y="409" />
807
+ <di:waypoint x="4354" y="909" />
725
808
  <bpmndi:BPMNLabel>
726
- <dc:Bounds x="4158" y="327" width="46" height="14" />
809
+ <dc:Bounds x="4794" y="387" width="46" height="14" />
727
810
  </bpmndi:BPMNLabel>
728
811
  </bpmndi:BPMNEdge>
729
812
  <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" />
813
+ <di:waypoint x="241" y="334" />
814
+ <di:waypoint x="241" y="469" />
815
+ <di:waypoint x="366" y="469" />
733
816
  <bpmndi:BPMNLabel>
734
- <dc:Bounds x="246" y="335" width="67" height="14" />
817
+ <dc:Bounds x="246" y="395" width="67" height="14" />
735
818
  </bpmndi:BPMNLabel>
736
819
  </bpmndi:BPMNEdge>
737
820
  <bpmndi:BPMNEdge id="BPMNEdge_f_plan_escalate" bpmnElement="f_plan_escalate">
738
- <di:waypoint x="1591" y="274" />
739
- <di:waypoint x="1591" y="409" />
740
- <di:waypoint x="1716" y="409" />
821
+ <di:waypoint x="1591" y="334" />
822
+ <di:waypoint x="1591" y="469" />
823
+ <di:waypoint x="1716" y="469" />
741
824
  <bpmndi:BPMNLabel>
742
- <dc:Bounds x="1596" y="335" width="67" height="14" />
825
+ <dc:Bounds x="1596" y="395" width="67" height="14" />
743
826
  </bpmndi:BPMNLabel>
744
827
  </bpmndi:BPMNEdge>
745
828
  <bpmndi:BPMNEdge id="BPMNEdge_f_plan_answer_proceed" bpmnElement="f_plan_answer_proceed">
746
- <di:waypoint x="1941" y="384" />
747
- <di:waypoint x="1941" y="249" />
748
- <di:waypoint x="2066" y="249" />
829
+ <di:waypoint x="1941" y="444" />
830
+ <di:waypoint x="1941" y="309" />
831
+ <di:waypoint x="2066" y="309" />
749
832
  <bpmndi:BPMNLabel>
750
- <dc:Bounds x="1946" y="310" width="53" height="14" />
833
+ <dc:Bounds x="1946" y="370" width="53" height="14" />
751
834
  </bpmndi:BPMNLabel>
752
835
  </bpmndi:BPMNEdge>
753
836
  <bpmndi:BPMNEdge id="BPMNEdge_f_runTrialMerge" bpmnElement="f_runTrialMerge">
754
- <di:waypoint x="3543" y="274" />
755
- <di:waypoint x="3543" y="889" />
756
- <di:waypoint x="3668" y="889" />
837
+ <di:waypoint x="4179" y="334" />
838
+ <di:waypoint x="4179" y="949" />
839
+ <di:waypoint x="4304" y="949" />
757
840
  <bpmndi:BPMNLabel>
758
- <dc:Bounds x="3548" y="575" width="25" height="14" />
841
+ <dc:Bounds x="4184" y="635" width="25" height="14" />
759
842
  </bpmndi:BPMNLabel>
760
843
  </bpmndi:BPMNEdge>
761
844
  <bpmndi:BPMNEdge id="BPMNEdge_f_trialEscalate" bpmnElement="f_trialEscalate">
762
- <di:waypoint x="4093" y="864" />
763
- <di:waypoint x="4093" y="409" />
764
- <di:waypoint x="4218" y="409" />
845
+ <di:waypoint x="4729" y="924" />
846
+ <di:waypoint x="4729" y="469" />
847
+ <di:waypoint x="4854" y="469" />
765
848
  <bpmndi:BPMNLabel>
766
- <dc:Bounds x="4098" y="630" width="85" height="14" />
849
+ <dc:Bounds x="4734" y="690" width="85" height="14" />
767
850
  </bpmndi:BPMNLabel>
768
851
  </bpmndi:BPMNEdge>
769
852
  <bpmndi:BPMNEdge id="BPMNEdge_f_trialAnswerProceed" bpmnElement="f_trialAnswerProceed">
770
- <di:waypoint x="4643" y="384" />
771
- <di:waypoint x="4643" y="249" />
772
- <di:waypoint x="4768" y="249" />
853
+ <di:waypoint x="5279" y="444" />
854
+ <di:waypoint x="5279" y="309" />
855
+ <di:waypoint x="5404" y="309" />
773
856
  <bpmndi:BPMNLabel>
774
- <dc:Bounds x="4648" y="310" width="53" height="14" />
857
+ <dc:Bounds x="5284" y="370" width="53" height="14" />
775
858
  </bpmndi:BPMNLabel>
776
859
  </bpmndi:BPMNEdge>
777
860
  <bpmndi:BPMNEdge id="BPMNEdge_f_trialAnswerAbandon" bpmnElement="f_trialAnswerAbandon">
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" />
861
+ <di:waypoint x="5279" y="444" />
862
+ <di:waypoint x="5279" y="282" />
863
+ <di:waypoint x="5534" y="282" />
864
+ <di:waypoint x="5534" y="309" />
865
+ <di:waypoint x="5554" y="309" />
783
866
  <bpmndi:BPMNLabel>
784
- <dc:Bounds x="4744" y="198" width="53" height="14" />
867
+ <dc:Bounds x="5380" y="260" width="53" height="14" />
785
868
  </bpmndi:BPMNLabel>
786
869
  </bpmndi:BPMNEdge>
787
870
  <bpmndi:BPMNEdge id="BPMNEdge_f_moreWaves" bpmnElement="f_moreWaves">
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" />
871
+ <di:waypoint x="5454" y="309" />
872
+ <di:waypoint x="5474" y="309" />
873
+ <di:waypoint x="5474" y="334" />
874
+ <di:waypoint x="5508" y="334" />
875
+ <di:waypoint x="5508" y="489" />
876
+ <di:waypoint x="5586" y="489" />
877
+ <di:waypoint x="5586" y="507" />
878
+ <di:waypoint x="5604" y="507" />
879
+ <di:waypoint x="5604" y="487" />
797
880
  <bpmndi:BPMNLabel>
798
- <dc:Bounds x="4877" y="345" width="35" height="14" />
881
+ <dc:Bounds x="5513" y="405" width="35" height="14" />
799
882
  </bpmndi:BPMNLabel>
800
883
  </bpmndi:BPMNEdge>
801
884
  <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" />
885
+ <di:waypoint x="466" y="469" />
886
+ <di:waypoint x="616" y="469" />
887
+ <di:waypoint x="616" y="349" />
805
888
  </bpmndi:BPMNEdge>
806
889
  <bpmndi:BPMNEdge id="BPMNEdge_f_toGwPlanAnswer" bpmnElement="f_toGwPlanAnswer">
807
- <di:waypoint x="1816" y="409" />
808
- <di:waypoint x="1916" y="409" />
890
+ <di:waypoint x="1816" y="469" />
891
+ <di:waypoint x="1916" y="469" />
809
892
  </bpmndi:BPMNEdge>
810
893
  <bpmndi:BPMNEdge id="BPMNEdge_f_toGwTrialAnswer" bpmnElement="f_toGwTrialAnswer">
811
- <di:waypoint x="4318" y="409" />
812
- <di:waypoint x="4418" y="409" />
894
+ <di:waypoint x="4954" y="469" />
895
+ <di:waypoint x="5054" y="469" />
813
896
  </bpmndi:BPMNEdge>
814
897
  <bpmndi:BPMNEdge id="BPMNEdge_f_resolveToTrialAnswer" bpmnElement="f_resolveToTrialAnswer">
815
- <di:waypoint x="4518" y="409" />
816
- <di:waypoint x="4618" y="409" />
898
+ <di:waypoint x="5154" y="469" />
899
+ <di:waypoint x="5254" y="469" />
817
900
  </bpmndi:BPMNEdge>
818
901
  <bpmndi:BPMNEdge id="BPMNEdge_f_plan_revise" bpmnElement="f_plan_revise">
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" />
902
+ <di:waypoint x="1591" y="284" />
903
+ <di:waypoint x="1591" y="249" />
904
+ <di:waypoint x="816" y="249" />
905
+ <di:waypoint x="816" y="269" />
823
906
  <bpmndi:BPMNLabel>
824
- <dc:Bounds x="1181" y="167" width="46" height="14" />
907
+ <dc:Bounds x="1181" y="227" width="46" height="14" />
825
908
  </bpmndi:BPMNLabel>
826
909
  </bpmndi:BPMNEdge>
827
910
  <bpmndi:BPMNEdge id="BPMNEdge_f_waveMerged" bpmnElement="f_waveMerged">
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" />
911
+ <di:waypoint x="5604" y="487" />
912
+ <di:waypoint x="5604" y="558" />
913
+ <di:waypoint x="2116" y="558" />
914
+ <di:waypoint x="2116" y="349" />
832
915
  </bpmndi:BPMNEdge>
833
916
  <bpmndi:BPMNEdge id="BPMNEdge_f_plan_sla" bpmnElement="f_plan_sla">
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" />
917
+ <di:waypoint x="1766" y="527" />
918
+ <di:waypoint x="1766" y="547" />
919
+ <di:waypoint x="816" y="547" />
920
+ <di:waypoint x="816" y="349" />
838
921
  <bpmndi:BPMNLabel>
839
- <dc:Bounds x="1251" y="454" width="81" height="28" />
922
+ <dc:Bounds x="1251" y="514" width="81" height="28" />
840
923
  </bpmndi:BPMNLabel>
841
924
  </bpmndi:BPMNEdge>
842
925
  <bpmndi:BPMNEdge id="BPMNEdge_f_trial_sla" bpmnElement="f_trial_sla">
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" />
926
+ <di:waypoint x="4904" y="527" />
927
+ <di:waypoint x="4904" y="889" />
928
+ <di:waypoint x="4354" y="889" />
929
+ <di:waypoint x="4354" y="909" />
847
930
  <bpmndi:BPMNLabel>
848
- <dc:Bounds x="3956" y="796" width="74" height="28" />
931
+ <dc:Bounds x="4592" y="856" width="74" height="28" />
849
932
  </bpmndi:BPMNLabel>
850
933
  </bpmndi:BPMNEdge>
851
934
  <bpmndi:BPMNShape id="BPMNShape_w_start" bpmnElement="w_start">
@@ -854,87 +937,157 @@
854
937
  <dc:Bounds x="2307" y="183" width="34" height="14" />
855
938
  </bpmndi:BPMNLabel>
856
939
  </bpmndi:BPMNShape>
857
- <bpmndi:BPMNShape id="BPMNShape_implement-task" bpmnElement="implement-task">
940
+ <bpmndi:BPMNShape id="BPMNShape_caps-prepare" bpmnElement="caps-prepare">
858
941
  <dc:Bounds x="2442" y="120" width="100" height="80" />
859
942
  </bpmndi:BPMNShape>
860
- <bpmndi:BPMNShape id="BPMNShape_w_gw" bpmnElement="w_gw" isMarkerVisible="true">
943
+ <bpmndi:BPMNShape id="BPMNShape_w_gw_needs" bpmnElement="w_gw_needs" isMarkerVisible="true">
861
944
  <dc:Bounds x="2642" y="135" width="50" height="50" />
862
945
  <bpmndi:BPMNLabel>
863
- <dc:Bounds x="2630" y="116" width="74" height="14" />
946
+ <dc:Bounds x="2570" y="190" width="74" height="28" />
947
+ </bpmndi:BPMNLabel>
948
+ </bpmndi:BPMNShape>
949
+ <bpmndi:BPMNShape id="BPMNShape_w_gw_caps" bpmnElement="w_gw_caps" isMarkerVisible="true">
950
+ <dc:Bounds x="2792" y="295" width="50" height="50" />
951
+ <bpmndi:BPMNLabel>
952
+ <dc:Bounds x="2778" y="262" width="78" height="28" />
953
+ </bpmndi:BPMNLabel>
954
+ </bpmndi:BPMNShape>
955
+ <bpmndi:BPMNShape id="BPMNShape_wait-caps-resolved" bpmnElement="wait-caps-resolved">
956
+ <dc:Bounds x="2942" y="302" width="36" height="36" />
957
+ <bpmndi:BPMNLabel>
958
+ <dc:Bounds x="2916" y="343" width="88" height="42" />
959
+ </bpmndi:BPMNLabel>
960
+ </bpmndi:BPMNShape>
961
+ <bpmndi:BPMNShape id="BPMNShape_wait-caps-timeout" bpmnElement="wait-caps-timeout">
962
+ <dc:Bounds x="2942" y="462" width="36" height="36" />
963
+ <bpmndi:BPMNLabel>
964
+ <dc:Bounds x="2918" y="415" width="84" height="42" />
965
+ </bpmndi:BPMNLabel>
966
+ </bpmndi:BPMNShape>
967
+ <bpmndi:BPMNShape id="BPMNShape_implement-task" bpmnElement="implement-task">
968
+ <dc:Bounds x="3078" y="120" width="100" height="80" />
969
+ </bpmndi:BPMNShape>
970
+ <bpmndi:BPMNShape id="BPMNShape_w_gw" bpmnElement="w_gw" isMarkerVisible="true">
971
+ <dc:Bounds x="3278" y="135" width="50" height="50" />
972
+ <bpmndi:BPMNLabel>
973
+ <dc:Bounds x="3266" y="116" width="74" height="14" />
864
974
  </bpmndi:BPMNLabel>
865
975
  </bpmndi:BPMNShape>
866
976
  <bpmndi:BPMNShape id="BPMNShape_feature-escalation" bpmnElement="feature-escalation">
867
- <dc:Bounds x="2792" y="280" width="100" height="80" />
977
+ <dc:Bounds x="3428" y="280" width="100" height="80" />
868
978
  </bpmndi:BPMNShape>
869
979
  <bpmndi:BPMNShape id="BPMNShape_w_gw_answer" bpmnElement="w_gw_answer" isMarkerVisible="true">
870
- <dc:Bounds x="2992" y="295" width="50" height="50" />
980
+ <dc:Bounds x="3628" y="295" width="50" height="50" />
871
981
  <bpmndi:BPMNLabel>
872
- <dc:Bounds x="2989" y="276" width="56" height="14" />
982
+ <dc:Bounds x="3625" y="276" width="56" height="14" />
873
983
  </bpmndi:BPMNLabel>
874
984
  </bpmndi:BPMNShape>
875
985
  <bpmndi:BPMNShape id="BPMNShape_w_end" bpmnElement="w_end">
876
- <dc:Bounds x="3142" y="142" width="36" height="36" />
986
+ <dc:Bounds x="3778" y="142" width="36" height="36" />
877
987
  <bpmndi:BPMNLabel>
878
- <dc:Bounds x="3127" y="123" width="66" height="14" />
988
+ <dc:Bounds x="3763" y="123" width="66" height="14" />
879
989
  </bpmndi:BPMNLabel>
880
990
  </bpmndi:BPMNShape>
881
991
  <bpmndi:BPMNShape id="BPMNShape_be_feature_sla" bpmnElement="be_feature_sla">
882
- <dc:Bounds x="2824" y="342" width="36" height="36" />
992
+ <dc:Bounds x="3460" y="342" width="36" height="36" />
883
993
  <bpmndi:BPMNLabel>
884
- <dc:Bounds x="2800" y="423" width="84" height="14" />
994
+ <dc:Bounds x="3436" y="423" width="84" height="14" />
885
995
  </bpmndi:BPMNLabel>
886
996
  </bpmndi:BPMNShape>
887
- <bpmndi:BPMNEdge id="BPMNEdge_w_toImpl" bpmnElement="w_toImpl">
997
+ <bpmndi:BPMNEdge id="BPMNEdge_w_toCapsPrepare" bpmnElement="w_toCapsPrepare">
888
998
  <di:waypoint x="2342" y="160" />
889
999
  <di:waypoint x="2442" y="160" />
890
1000
  </bpmndi:BPMNEdge>
891
- <bpmndi:BPMNEdge id="BPMNEdge_w_toGw" bpmnElement="w_toGw">
1001
+ <bpmndi:BPMNEdge id="BPMNEdge_w_toNeedsGw" bpmnElement="w_toNeedsGw">
892
1002
  <di:waypoint x="2542" y="160" />
893
1003
  <di:waypoint x="2642" y="160" />
894
1004
  </bpmndi:BPMNEdge>
895
- <bpmndi:BPMNEdge id="BPMNEdge_w_done" bpmnElement="w_done">
1005
+ <bpmndi:BPMNEdge id="BPMNEdge_w_noNeeds" bpmnElement="w_noNeeds">
896
1006
  <di:waypoint x="2692" y="160" />
897
- <di:waypoint x="3142" y="160" />
1007
+ <di:waypoint x="3078" y="160" />
898
1008
  <bpmndi:BPMNLabel>
899
- <dc:Bounds x="2901" y="138" width="32" height="14" />
1009
+ <dc:Bounds x="2869" y="138" width="32" height="14" />
900
1010
  </bpmndi:BPMNLabel>
901
1011
  </bpmndi:BPMNEdge>
1012
+ <bpmndi:BPMNEdge id="BPMNEdge_w_toGw" bpmnElement="w_toGw">
1013
+ <di:waypoint x="3178" y="160" />
1014
+ <di:waypoint x="3278" y="160" />
1015
+ </bpmndi:BPMNEdge>
1016
+ <bpmndi:BPMNEdge id="BPMNEdge_w_done" bpmnElement="w_done">
1017
+ <di:waypoint x="3328" y="160" />
1018
+ <di:waypoint x="3778" y="160" />
1019
+ <bpmndi:BPMNLabel>
1020
+ <dc:Bounds x="3537" y="138" width="32" height="14" />
1021
+ </bpmndi:BPMNLabel>
1022
+ </bpmndi:BPMNEdge>
1023
+ <bpmndi:BPMNEdge id="BPMNEdge_w_capsToWait" bpmnElement="w_capsToWait">
1024
+ <di:waypoint x="2842" y="320" />
1025
+ <di:waypoint x="2942" y="320" />
1026
+ </bpmndi:BPMNEdge>
1027
+ <bpmndi:BPMNEdge id="BPMNEdge_w_capsResolved" bpmnElement="w_capsResolved">
1028
+ <di:waypoint x="2978" y="320" />
1029
+ <di:waypoint x="3128" y="320" />
1030
+ <di:waypoint x="3128" y="200" />
1031
+ </bpmndi:BPMNEdge>
902
1032
  <bpmndi:BPMNEdge id="BPMNEdge_w_abandon" bpmnElement="w_abandon">
903
- <di:waypoint x="3042" y="320" />
904
- <di:waypoint x="3160" y="320" />
905
- <di:waypoint x="3160" y="178" />
1033
+ <di:waypoint x="3678" y="320" />
1034
+ <di:waypoint x="3796" y="320" />
1035
+ <di:waypoint x="3796" y="178" />
906
1036
  <bpmndi:BPMNLabel>
907
- <dc:Bounds x="3075" y="298" width="53" height="14" />
1037
+ <dc:Bounds x="3711" y="298" width="53" height="14" />
908
1038
  </bpmndi:BPMNLabel>
909
1039
  </bpmndi:BPMNEdge>
910
- <bpmndi:BPMNEdge id="BPMNEdge_w_escalate" bpmnElement="w_escalate">
1040
+ <bpmndi:BPMNEdge id="BPMNEdge_w_toWaitCaps" bpmnElement="w_toWaitCaps">
911
1041
  <di:waypoint x="2667" y="185" />
912
1042
  <di:waypoint x="2667" y="320" />
913
1043
  <di:waypoint x="2792" y="320" />
914
1044
  <bpmndi:BPMNLabel>
915
- <dc:Bounds x="2672" y="246" width="67" height="14" />
1045
+ <dc:Bounds x="2672" y="246" width="39" height="14" />
1046
+ </bpmndi:BPMNLabel>
1047
+ </bpmndi:BPMNEdge>
1048
+ <bpmndi:BPMNEdge id="BPMNEdge_w_capsToTimeout" bpmnElement="w_capsToTimeout">
1049
+ <di:waypoint x="2817" y="345" />
1050
+ <di:waypoint x="2817" y="480" />
1051
+ <di:waypoint x="2942" y="480" />
1052
+ </bpmndi:BPMNEdge>
1053
+ <bpmndi:BPMNEdge id="BPMNEdge_w_escalate" bpmnElement="w_escalate">
1054
+ <di:waypoint x="3303" y="185" />
1055
+ <di:waypoint x="3303" y="320" />
1056
+ <di:waypoint x="3428" y="320" />
1057
+ <bpmndi:BPMNLabel>
1058
+ <dc:Bounds x="3308" y="246" width="67" height="14" />
1059
+ </bpmndi:BPMNLabel>
1060
+ </bpmndi:BPMNEdge>
1061
+ <bpmndi:BPMNEdge id="BPMNEdge_w_capsTimeout" bpmnElement="w_capsTimeout">
1062
+ <di:waypoint x="2942" y="480" />
1063
+ <di:waypoint x="2286" y="480" />
1064
+ <di:waypoint x="2286" y="100" />
1065
+ <di:waypoint x="3478" y="100" />
1066
+ <di:waypoint x="3478" y="280" />
1067
+ <bpmndi:BPMNLabel>
1068
+ <dc:Bounds x="2291" y="283" width="63" height="14" />
916
1069
  </bpmndi:BPMNLabel>
917
1070
  </bpmndi:BPMNEdge>
918
1071
  <bpmndi:BPMNEdge id="BPMNEdge_w_toAnswerGw" bpmnElement="w_toAnswerGw">
919
- <di:waypoint x="2892" y="320" />
920
- <di:waypoint x="2992" y="320" />
1072
+ <di:waypoint x="3528" y="320" />
1073
+ <di:waypoint x="3628" y="320" />
921
1074
  </bpmndi:BPMNEdge>
922
1075
  <bpmndi:BPMNEdge id="BPMNEdge_w_sla" bpmnElement="w_sla">
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" />
1076
+ <di:waypoint x="3478" y="378" />
1077
+ <di:waypoint x="3478" y="398" />
1078
+ <di:waypoint x="3796" y="398" />
1079
+ <di:waypoint x="3796" y="178" />
927
1080
  <bpmndi:BPMNLabel>
928
- <dc:Bounds x="2917" y="365" width="88" height="28" />
1081
+ <dc:Bounds x="3553" y="365" width="88" height="28" />
929
1082
  </bpmndi:BPMNLabel>
930
1083
  </bpmndi:BPMNEdge>
931
1084
  <bpmndi:BPMNEdge id="BPMNEdge_w_answerLoop" bpmnElement="w_answerLoop">
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" />
1085
+ <di:waypoint x="3653" y="345" />
1086
+ <di:waypoint x="3653" y="400" />
1087
+ <di:waypoint x="3128" y="400" />
1088
+ <di:waypoint x="3128" y="200" />
936
1089
  <bpmndi:BPMNLabel>
937
- <dc:Bounds x="2730" y="378" width="49" height="14" />
1090
+ <dc:Bounds x="3366" y="378" width="49" height="14" />
938
1091
  </bpmndi:BPMNLabel>
939
1092
  </bpmndi:BPMNEdge>
940
1093
  </bpmndi:BPMNPlane>