RollBack para correção do build
parent
2bd6c18c7a
commit
314a1541cf
|
@ -0,0 +1 @@
|
|||
/org.eclipse.core.resources.prefs
|
|
@ -0,0 +1,73 @@
|
|||
package com.rjconsultores.ventaboletos.blocos.bradesco;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import com.rjconsultores.ventaboletos.blocos.DetalheRetorno;
|
||||
import com.rjconsultores.ventaboletos.enuns.MotivoOcorrenciaBradesco;
|
||||
import com.rjconsultores.ventaboletos.enuns.OcorrenciaBradesco;
|
||||
|
||||
public class DetalheRetornoBradesco implements DetalheRetorno, Cloneable{
|
||||
|
||||
private String numeroControleDoParticipante;
|
||||
private OcorrenciaBradesco ocorrencia;
|
||||
private List<MotivoOcorrenciaBradesco> motivoOcorrencias;
|
||||
private Integer idBoletoFechamento;
|
||||
private String nossoNumero;
|
||||
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){
|
||||
this.motivoOcorrencias = new ArrayList<MotivoOcorrenciaBradesco>();
|
||||
}
|
||||
|
||||
this.motivoOcorrencias.add(motivoOcorrencias);
|
||||
}
|
||||
|
||||
public Integer getIdBoletoFechamento() {
|
||||
return idBoletoFechamento;
|
||||
}
|
||||
|
||||
public void setIdBoletoFechamento(Integer idBoletoFechamento) {
|
||||
this.idBoletoFechamento = idBoletoFechamento;
|
||||
}
|
||||
|
||||
public String getNossoNumero() {
|
||||
return nossoNumero;
|
||||
}
|
||||
|
||||
public void setNossoNumero(String nossoNumero) {
|
||||
this.nossoNumero = nossoNumero;
|
||||
}
|
||||
|
||||
public Integer getNumeroSequencialRegistro() {
|
||||
return numeroSequencialRegistro;
|
||||
}
|
||||
|
||||
public void setNumeroSequencialRegistro(Integer numeroSequencialRegistro) {
|
||||
this.numeroSequencialRegistro = numeroSequencialRegistro;
|
||||
}
|
||||
|
||||
public void setMotivoOcorrencias(List<MotivoOcorrenciaBradesco> motivoOcorrencias) {
|
||||
this.motivoOcorrencias = motivoOcorrencias;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
|
@ -0,0 +1,37 @@
|
|||
package com.rjconsultores.ventaboletos.blocos.itau;
|
||||
|
||||
import com.rjconsultores.ventaboletos.blocos.DetalheRetorno;
|
||||
|
||||
public class DetalheRetornoItau implements DetalheRetorno, Cloneable{
|
||||
|
||||
private Integer idBoletoFechamento;
|
||||
private String nossoNumero;
|
||||
private Integer numeroSequencialRegistro;
|
||||
|
||||
|
||||
public Integer getIdBoletoFechamento() {
|
||||
return idBoletoFechamento;
|
||||
}
|
||||
|
||||
public void setIdBoletoFechamento(Integer idBoletoFechamento) {
|
||||
this.idBoletoFechamento = idBoletoFechamento;
|
||||
}
|
||||
|
||||
public String getNossoNumero() {
|
||||
return nossoNumero;
|
||||
}
|
||||
|
||||
public void setNossoNumero(String nossoNumero) {
|
||||
this.nossoNumero = nossoNumero;
|
||||
}
|
||||
|
||||
public Integer getNumeroSequencialRegistro() {
|
||||
return numeroSequencialRegistro;
|
||||
}
|
||||
|
||||
public void setNumeroSequencialRegistro(Integer numeroSequencialRegistro) {
|
||||
this.numeroSequencialRegistro = numeroSequencialRegistro;
|
||||
}
|
||||
|
||||
|
||||
}
|
Loading…
Reference in New Issue