Some checks failed
CI / lint (pull_request) Successful in 1m15s
CI / build (pull_request) Successful in 58s
CI / unit (pull_request) Successful in 1m9s
CI / frontend (pull_request) Successful in 2m28s
CI / mutation (pull_request) Successful in 5m19s
CI / verify-stack (pull_request) Failing after 7m53s
flowable-rest's businessRuleTask parse handler binds the legacy Drools/KIE implementation (NoClassDefFoundError: org.kie.api...AgendaFilter at deploy time), so registratie.bpmn failed to deploy and flowable-init exited 22. Flowable's supported inline-DMN construct is a serviceTask with flowable:type="dmn" — switch to it. The DMN cross-deploy via the process repository (previous commit) was fine; this was the BPMN parse. Docs/comments updated to match. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
39 lines
1.6 KiB
XML
39 lines
1.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!-- Diploma-eligibility decision (S-13, ADR-0016). Evaluated inline by the registratie process as a
|
|
BPMN DMN service task: given the diploma's origin, it sets the `route` the process should take.
|
|
A foreign (Buitenlands) diploma routes through the extra CBGV-advies assessment step; a domestic
|
|
one (or anything else) goes DIRECT to beoordeling. FIRST hit policy: the foreign rule wins, and
|
|
the empty-input catch-all is the default. -->
|
|
<definitions xmlns="https://www.omg.org/spec/DMN/20191111/MODEL/"
|
|
xmlns:flowable="http://flowable.org/dmn"
|
|
id="diplomaEligibilityDefinitions"
|
|
name="Diploma eligibility"
|
|
namespace="http://respellion.nl/big/dmn">
|
|
<decision id="diploma-eligibility" name="Diploma eligibility">
|
|
<decisionTable id="dt-diploma-eligibility" hitPolicy="FIRST">
|
|
<input id="in-origin" label="Diploma origin">
|
|
<inputExpression id="ie-origin" typeRef="string">
|
|
<text>diplomaOrigin</text>
|
|
</inputExpression>
|
|
</input>
|
|
<output id="out-route" label="Route" name="route" typeRef="string"/>
|
|
<rule id="rule-foreign">
|
|
<inputEntry id="rule-foreign-in">
|
|
<text>"Buitenlands"</text>
|
|
</inputEntry>
|
|
<outputEntry id="rule-foreign-out">
|
|
<text>"CBGV_ADVIES"</text>
|
|
</outputEntry>
|
|
</rule>
|
|
<rule id="rule-default">
|
|
<inputEntry id="rule-default-in">
|
|
<text></text>
|
|
</inputEntry>
|
|
<outputEntry id="rule-default-out">
|
|
<text>"DIRECT"</text>
|
|
</outputEntry>
|
|
</rule>
|
|
</decisionTable>
|
|
</decision>
|
|
</definitions>
|