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 = "CtError", propOrder = {"code", "description"}) public class CtError { @XmlElement(name = "Code", required = true) protected String code; @XmlElement(name = "Description", required = true) protected String description; public String getCode() { return code; } public void setCode(final String code) { this.code = code; } public String getDescription() { return description; } public void setDescription(final String description) { this.description = description; } }