Mapping of elements of BPMN.xml file to docu elements
Closed this issue · 0 comments
michaelschmitz13 commented
Create a "class".
Input
<bpmn:process id="ID-ProzessNameProcess" name="ProzessName" camunda:versionTag="1.0.0">
<bpmn:documentation>Das ist die Prozessdoku</bpmn:documentation>
[...]
</bpmn:process>
output in Kotlin-Object
processId: "ID-ProzessNameProcess" (bpmn:process id)
name: "ProzessName" (bpmn:process name)
version: "1.0.0" (bpmn:process camunda:versionTag)
process documentation: Das ist die Prozessdoku (bpmn:documentation)