Deserialize Custom Complex Object

Hi Team,
I am able to serialize custom Java Object as process variable. Now I want to deserialize this object on embedded form.

Structure of Complex Object:

public class Customer{
private String customerName;
private List addresses;
}

public class CustomerAddress{

private String address;
private String cityName;

}

Please suggest how can I deserialize?

Regards,
Ankur

Hi Ankur,

there is some documentation about how to work with serialized Java Objects in embedded task forms.

Does this help you?

Cheers
Sebastian