Hi
I’m trying to send a list of strings to camunda process from an external task client developed in java and use that list further in the process.
I tried the following approach and it did not work
List failedaccounts;
Map<String, Object> variables = new HashMap<>();
variables.put(“flag”, false);
variables.put(“failedaccounts”, failedaccounts);
externalTaskService.complete(externalTask, variables);
Can I directly pass a java list back to camunda and how do I retrieve it back on the camunda side