bank
You need to change the property property from a String object to a domain object.
@XmlAccessorType(XmlAccessType.FIELD) public class Bank { private String description; private String externalkey; private Property property; }
Property
Then your property object will look something like this:
@XmlAccessorType(XmlAccessType.FIELD) public class Property { @XmlAttribute private String name; @XmlAtrribute private String value; }
source share