/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package restservices.response; import javax.xml.bind.annotation.XmlRootElement; @XmlRootElement public class EstadoResponse { String estado; public EstadoResponse(String estado) { this.estado = estado; } public EstadoResponse() { } public String getEstado() { return estado; } public void setEstado(String estado) { this.estado = estado; } }