diff --git a/src/com/rjconsultores/ventaboletos/entidad/EmpresaEmailConfig.java b/src/com/rjconsultores/ventaboletos/entidad/EmpresaEmailConfig.java index db59ecc0d..393e2eb23 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/EmpresaEmailConfig.java +++ b/src/com/rjconsultores/ventaboletos/entidad/EmpresaEmailConfig.java @@ -16,6 +16,8 @@ import javax.persistence.Table; import javax.persistence.Temporal; import javax.persistence.TemporalType; +import org.apache.commons.lang.BooleanUtils; + @Entity @SequenceGenerator(name = "EMPRESA_EMAIL_CONFIG_SEQ", sequenceName = "EMPRESA_EMAIL_CONFIG_SEQ", allocationSize = 1) @Table(name = "EMPRESA_EMAIL_CONFIG") @@ -45,6 +47,8 @@ public class EmpresaEmailConfig implements Serializable { private Date fecmodif; @Column(name = "USUARIO_ID") private Integer usuarioId; + @Column(name = "INDAUTENTICACAO") + private Boolean indAutenticacao; public EmpresaEmailConfig() { @@ -122,6 +126,14 @@ public class EmpresaEmailConfig implements Serializable { this.usuarioId = usuarioId; } + public Boolean getIndAutenticacao() { + return BooleanUtils.toBooleanObject(indAutenticacao) ; + } + + public void setIndAutenticacao(Boolean indAutenticacao) { + this.indAutenticacao = indAutenticacao; + } + @Override public int hashCode() { final int prime = 31;