package com.p4square.ccbapi.model; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlValue; /** * Generic reference to a id and name. */ @XmlAccessorType(XmlAccessType.NONE) public class Reference { @XmlAttribute(name="id") private int id; @XmlValue private String name; public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } }