fixes bug#24733
dev: Wallace qua: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/GeneradorBoletosCNAB/trunk@113560 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
424dd6c80f
commit
15c5659646
|
@ -1,5 +1,7 @@
|
|||
package com.rjconsultores.ventaboletos.blocos;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public interface DetalheRetorno {
|
||||
|
||||
public void setIdBoletoFechamento(Integer id);
|
||||
|
@ -9,5 +11,7 @@ public interface DetalheRetorno {
|
|||
public void setNumeroSequencialRegistro(Integer numeroSequencialRegistro);
|
||||
public String getCodigoOcorrencia();
|
||||
public void setCodigoOcorrencia(String codigoOcorrencia);
|
||||
public BigDecimal getValorJuros();
|
||||
public void setValorJuros(BigDecimal valorJuros);
|
||||
|
||||
}
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
package com.rjconsultores.ventaboletos.blocos.bradesco;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
@ -15,23 +16,29 @@ public class DetalheRetornoBradesco implements DetalheRetorno, Cloneable{
|
|||
private Integer idBoletoFechamento;
|
||||
private String nossoNumero;
|
||||
private String codigoOcorrencia;
|
||||
private BigDecimal valorJuros;
|
||||
private Integer numeroSequencialRegistro;
|
||||
|
||||
public String getNumeroControleDoParticipante() {
|
||||
return numeroControleDoParticipante;
|
||||
}
|
||||
|
||||
public void setNumeroControleDoParticipante(String numeroControleDoParticipante) {
|
||||
this.numeroControleDoParticipante = numeroControleDoParticipante;
|
||||
}
|
||||
|
||||
public OcorrenciaBradesco getOcorrencia() {
|
||||
return ocorrencia;
|
||||
}
|
||||
|
||||
public void setOcorrencia(OcorrenciaBradesco ocorrencia) {
|
||||
this.ocorrencia = ocorrencia;
|
||||
}
|
||||
|
||||
public List<MotivoOcorrenciaBradesco> getMotivoOcorrencias() {
|
||||
return motivoOcorrencias;
|
||||
}
|
||||
|
||||
public void addMotivoOcorrencia(MotivoOcorrenciaBradesco motivoOcorrencias) {
|
||||
|
||||
if(this.motivoOcorrencias == null){
|
||||
|
@ -76,5 +83,13 @@ public class DetalheRetornoBradesco implements DetalheRetorno, Cloneable{
|
|||
public void setCodigoOcorrencia(String codigoOcorrencia) {
|
||||
this.codigoOcorrencia = codigoOcorrencia;
|
||||
}
|
||||
|
||||
public BigDecimal getValorJuros() {
|
||||
return valorJuros;
|
||||
}
|
||||
|
||||
public void setValorJuros(BigDecimal valorJuros) {
|
||||
this.valorJuros = valorJuros;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
package com.rjconsultores.ventaboletos.blocos.itau;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
import com.rjconsultores.ventaboletos.blocos.DetalheRetorno;
|
||||
|
||||
public class DetalheRetornoItau implements DetalheRetorno, Cloneable{
|
||||
|
@ -7,6 +9,7 @@ public class DetalheRetornoItau implements DetalheRetorno, Cloneable{
|
|||
private Integer idBoletoFechamento;
|
||||
private String nossoNumero;
|
||||
private String codigoOcorrencia;
|
||||
private BigDecimal valorJuros;
|
||||
private Integer numeroSequencialRegistro;
|
||||
|
||||
|
||||
|
@ -42,5 +45,13 @@ public class DetalheRetornoItau implements DetalheRetorno, Cloneable{
|
|||
this.codigoOcorrencia = codigoOcorrencia;
|
||||
}
|
||||
|
||||
public BigDecimal getValorJuros() {
|
||||
return valorJuros;
|
||||
}
|
||||
|
||||
public void setValorJuros(BigDecimal valorJuros) {
|
||||
this.valorJuros = valorJuros;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue