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 = "parentId") public class CTCommonContentWithParent extends CTCommonContent { @XmlElement(name = "ParentId", required = true) private Integer parentId; public Integer getParentId() { return parentId; } public void setParentId(final Integer parentId) { this.parentId = parentId; } }