package br.com.centralit.citsmart.rest.schema; import java.math.BigInteger; 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 = "CtNotificationGetReasons", propOrder = "taskId") public class CtNotificationGetReasons extends CtMessage { @XmlElement(name = "TaskId", required = true) protected BigInteger taskId; public BigInteger getTaskId() { return taskId; } public void setTaskId(final BigInteger taskId) { this.taskId = taskId; } }