Hi,
I have a JAX-RS method which takes an Employee object as a param. Employee
class is given below.
@XmlRootElement
public class Employee {
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
Unmarshalling of the JSON
{"employee":{"name":"abc"}}
works fine and gives an Employee object, but if the JSON input is
{"name":"abc"}
unmarshalling fails.
Does CXF support both wrapped and unwrapped styles in Mapped convention for
JSON?
If yes what should be done to make the second case work?
Thank you
Chaithanya.