I have some extensionElements defined in stage planItem. How do I get those using flowable APIs after deployment for that CMMN model?
Hey @AkaiIto,
Assuming you get a hold of a DelegatePlanItemInstance
in a PlanItemJavaDelegate
or be passing planItemInstance
to an expression. You can get a hold of the PlanItem
through DelegatePlanItemInstance#getPlanItem
and then get the extensions elements through PlanItem#getExtensionElements
.
Cheers,
Filip