package br.com.centralit.citsmart.rest.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CtReason", propOrder = {"id", "desc"}) public class CtReason { @XmlElement(name = "Id") protected int id; @XmlElement(name = "Desc", required = true) protected String desc; public int getId() { return id; } public void setId(final int id) { this.id = id; } public String getDesc() { return desc; } public void setDesc(final String desc) { this.desc = desc; } }