Banco do brasil

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/GeneradorBoletosCNAB/trunk@81765 d1611594-4594-4d17-8e1d-87c2c4800839
master
rafael.henrique 2018-05-10 23:31:16 +00:00
parent e3363f36f4
commit 9bc81bfd9e
2 changed files with 24 additions and 4 deletions

View File

@ -0,0 +1,17 @@
package com.rjconsultores.ventaboletos.enuns;
public enum AceiteBB {
ACEITE("A"),
NAO_ACEITE("N");
private AceiteBB(String value){
this.value = value;
}
private String value;
public String getValue() {
return value;
}
}

View File

@ -2,10 +2,13 @@ package com.rjconsultores.ventaboletos.enuns;
public enum BancoLayout { public enum BancoLayout {
BRADESCO_Envio("237", false, "/layouts/LayoutBradescoCNAB400Envio.txg.xml"), BRADESCO_400_Envio("237", false, "/layouts/LayoutBradescoCNAB400Envio.txg.xml"),
ITAU_Envio("341", false, "/layouts/LayoutItauCNAB400Envio.txg.xml"), ITAU_400_Envio("341", false, "/layouts/LayoutItauCNAB400Envio.txg.xml"),
BRADESCO_Retorno("237", true, "/layouts/LayoutBradescoCNAB400Retorno.txg.xml"), BB_240_Envio("001", false, "/layouts/LayoutBBCNAB240Envio.txg.xml"),
ITAU_Retorno("341", true, "/layouts/LayoutItauCNAB400Envio.txg.xml"); BRADESCO_400_Retorno("237", true, "/layouts/LayoutBradescoCNAB400Retorno.txg.xml"),
ITAU_400_Retorno("341", true, ""),
BB_240_Retorno("001", true, "");
private BancoLayout(String codBanco, boolean retorno, String path) { private BancoLayout(String codBanco, boolean retorno, String path) {
this.codBanco = codBanco; this.codBanco = codBanco;