package org.jboss.resteasy.test.providers.jaxb.resource; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; @XmlRootElement(name = "human") @XmlAccessorType(XmlAccessType.FIELD) public class XmlJavaTypeAdapterHuman { @XmlElement private String name; public String getName() { return name; } public void setName(String name) { this.name = name; } }