package br.com.centralit.citsmart.rest.v2.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(propOrder = {"id", "description"}) public class CTCommonContent { @XmlElement(name = "Id", required = true) private Integer id; @XmlElement(name = "Description", required = true) private String description; public Integer getId() { return id; } public void setId(final Integer id) { this.id = id; } public String getDescription() { return description; } public void setDescription(final String description) { this.description = description; } }