Modeler does not allow to send a retrieved List to a Java Action using Any Object

0
Its not possible to send a "retrieved action" to a JavaAction using the datatype "Any object" in the JavaAction parameters tab. i would like to achieve manipulation of a list object in Java, is there a way to send this?
asked
1 answers
0

If I understand you correctly, you want to manipulate/use a list of mendix objects in a java action?

If that is the case, I'd suggest setting the input parameter of the java action to "list" and sending it as a parameter in that way.

The wacky alternative is to create a Domain Entity that has a referenceset to the list of objects that you want to pass, then add that entity to the java action as a parameter, and retrieve the list inside the java action.

answered