package org.jboss.resteasy.test.providers.jettison.resource; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessType; @XmlRootElement @XmlAccessorType(XmlAccessType.FIELD) public class JsonCollectionFoo { @XmlAttribute private String test; public JsonCollectionFoo() { } public JsonCollectionFoo(final String test) { this.test = test; } public String getTest() { return test; } public void setTest(String test) { this.test = test; } }