camunda/camunda-bpmn-moddle

Add Form Binding Properties

philippfromme opened this issue · 0 comments

In order to support binding to form files as described in #2295 we need to add new properties to this extension.

New User Task Properties

  • camunda:formRef (maps to id property of the form)
  • camunda:formRefBinding (latest or version)
  • camunda:version (maps to an internal version property set by the engine)

Example

<bpmn:userTask
  id="Activity_1"
  camunda:formRef="formId"
  camunda:formRefBinding="version">
</bpmn:userTask>

or

<bpmn:userTask
  id="Activity_1"
  camunda:formRef="latest">
</bpmn:userTask>

Child of camunda/camunda-modeler#2295