Hi,
I have got some Java-Beans with an hierarchical order. The beans lool like this:
public class NinoObject {
private String localName;
private String rdfType;
//constructors, getters and setters
}
public class Room extends NinoObject {
private String name;
//constructors, getters and setters
}
When axis deserializes a Room object, it doesn't set the fields of the "higher" object (NinoObject).
Is it possible to let axis set this fields without implementing the set-methods in the "lower" objects?
Thanks,
Benjamin
