Note: I'm the EclipseLink JAXB (MOXy) lead, and a member of the JAXB (JSR-222) expert group.
Is the possibility to create only one class?
Yes, this can be done in a couple of different ways:
- Using an
XmlAdapter
- Using MOXy's
@XmlPath extension
Option 1 - XmlAdapter
This approach is similar to what was suggested by skaffman only it keeps the logic out of your domain model:
package forum6871469;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.adapters.XmlAdapter;
public class DogAdapter extends XmlAdapter<DogAdapter.Dog, String> {
@Override
public Dog marshal(String name) throws Exception {
Dog dog = new Dog();
dog.name = name;
return dog;
}
@Override
public String unmarshal(Dog dog) throws Exception {
return dog.name;
}
public static class Dog {
@XmlAttribute
public String name;
}
}
The XmlAdapter is referenced using the @XmlJavaTypeAdaper annotation:
package forum6871469;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
@XmlRootElement
public class Animals{
private String dog; // value of this field should be "Pluto"
@XmlJavaTypeAdapter(DogAdapter.class)
public String getDog() {
return dog;
}
public void setDog(String dogName) {
dog = dogName;
}
}
For More Information
Option 2 - MOXy's @XmlPath Extension
You can use the @XmlPath extension in MOXy to map this use case:
package forum6871469;
import javax.xml.bind.annotation.XmlRootElement;
import org.eclipse.persistence.oxm.annotations.XmlPath;
@XmlRootElement
public class Animals{
private String dog; // value of this field should be "Pluto"
@XmlPath("dog/@name")
public String getDog() {
return dog;
}
public void setDog(String dogName) {
dog = dogName;
}
}
For More Information