1.0 to 1.1
CMMN is deprecated
CMMN support is deprecated as of EximeeBPMS 1.3.0 and will be removed in 1.4.0. See CMMN Deprecation & Removal for detection queries and upgrade guidance.
In order to update existing CMMN 1.0 XMLs to valid CMMN 1.1 the following adjustments must be done.
The namespace must be updated as follows:
Affected Elements Definitions CMMN 1.0 <definitions xmlns=“http://www.omg.org/spec/CMMN/20131201/MODEL">CMMN 1.1 <definitions xmlns=“http://www.omg.org/spec/CMMN/20151109/MODEL">The
<body/>element from expressions must be removed:
This is relevant for all elements containing a condition likeAffected Elements Condition CMMN 1.0 <condition>
<body>${any-expression}<body></condition>CMMN 1.1 <condition>${any-expression}</condition>IfPart,ManualActivationRuleandRequiredRuleThe attributes
entryCriteriaRefsandexitCriteriaRefsare dropped, so that the following adjustments must be done:Affected Elements PlanItem, CasePlanModel CMMN 1.0 <planItem id=“A_PLAN_ITEM_ID”
entryCriteriaRefs=“Sentry_1 Sentry_2”
exitCriteriaRefs=“Sentry_3 Sentry4” />CMMN 1.1 <planItem id=“A_PLAN_ITEM_ID”>
<entryCriterion sentryRef=“Sentry_1” />
<entryCriterion sentryRef=“Sentry_2” />
<exitCriterion sentryRef=“Sentry_3” />
<exitCriterion sentryRef=“Sentry_4” /></planItem>The attribute
descriptionis not available anymore. Instead of thedescriptionattribute use the<documentation/>element:Affected Elements Any CMMN element CMMN 1.0 <planItem id=“A_PLAN_ITEM_ID”
description=“This is a description of the plan item…” />CMMN 1.1 <planItem id=“A_PLAN_ITEM_ID”>
<documentation>
This is a description of the plan item…
</documentation></planItem>