Hi!
I have a DTO that looks like this:
public class MyDTO extends DTO {
public String pid;
public String name;
public String description;
public String type;
}
And a Map (myMap) that has key/values with these keys: {“pid”, “name”,
“description”, “type”}.
I make this call:
MyDTO dto = converter.convert( myMap ).to( MyDTO.class );
It is my expectation that dto should be non-null, but I get a null result. I
step through the code, but am not particularly enlightened.
Any suggestion as to what strategy I could use to figure out my problem?
Thanks!
=David