Hello !
I have an extension for my custom task.
I have registered some simple attributes.
But now i need an attribute with a value of list of another type.
It’s look like this:
<bpmn:serviceTask>
<bpmn:extensionElements>
<-- whats done: -->
<myNS:myTask
stringValue="some"
otherStringValue="how">
<-- what i need to do: -->
<listValue>
<dictionaryValue
code="some-code"
value="some-value"/>
<dictionaryValue
code="some-other-code"
value="some-other-value"/>
</listValue>
</myNS:myTask>
</bpmn:extensionElements>
</bpmn:serviceTask>
Is this real to do ?