/* * Estado.java * * Created on November 29, 2007, 10:01 AM * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package beans; import java.io.Serializable; /** * * @author lluis */ public class Estado implements Serializable { private Integer estado; private String descricao; /** Creates a new instance of Estado */ public Estado() { } public Integer getEstado() { return estado; } public void setEstado(Integer estado) { this.estado = estado; } public String getDescricao() { return descricao; } public void setDescricao(String descricao) { this.descricao = descricao; } }