is it possible to have the same result with the java api please ?
I tried with :
<code>
ProcessEngines
.getDefaultProcessEngine()
.getFormService()
.getTaskFormData(taskId)
.getFormProperties()
.listIterator();
</code>
here is my result :
<code>
[{
"id": "__button__",
"name": "team2",
"type": {
"name": "enum"
},
"value": null,
"readable": true,
"writable": true,
"required": false
}]
</code>
but I don't have the different values of my enum. Is my call to the engine wrong ?
Thanks for your help,
Regards
Aurelien