When using translated jackson, it cannot deserialize objects with embedded lists.
The java test passes while the objective-c tests fails when deserializing. Serializing works.
public static class Person {
private ArrayList<Address> addressList;
}
When deserializing such an object the result is a person with an arraylist filled with LinkedHashMaps.
A test is provided here: j2objc-contrib/j2objc-common-libs-e2e-test#50