com.fincatto.documentofiscal.cte200.classes.CTAutorizador Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nfe Show documentation
Show all versions of nfe Show documentation
Biblioteca de comunicacao de nota fiscal eletronica brasileira
package com.fincatto.documentofiscal.cte200.classes;
import com.fincatto.documentofiscal.DFAmbiente;
/**
* URLs dos serviços
* NFE Homologação
* NFE Produção
*
* NFCE Homologação
* NFCE Produção
*/
public enum CTAutorizador {
AN {
@Override
public String getDistribuicaoDFe(final DFAmbiente ambiente) {
return DFAmbiente.HOMOLOGACAO.equals(ambiente) ? "https://hom1.cte.fazenda.gov.br/CTeDistribuicaoDFe/CTeDistribuicaoDFe.asmx" : "https://www1.cte.fazenda.gov.br/CTeDistribuicaoDFe/CTeDistribuicaoDFe.asmx";
}
};
public abstract String getDistribuicaoDFe(final DFAmbiente ambiente);
}