com.fincatto.documentofiscal.nfe310.classes.evento.downloadnf.NFDownloadNFe 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.nfe310.classes.evento.downloadnf;
import com.fincatto.documentofiscal.DFAmbiente;
import com.fincatto.documentofiscal.DFBase;
import com.fincatto.documentofiscal.validadores.DFStringValidador;
import org.simpleframework.xml.Attribute;
import org.simpleframework.xml.Element;
import org.simpleframework.xml.Namespace;
import org.simpleframework.xml.Root;
@Root(name = "downloadNFe")
@Namespace(reference = "http://www.portalfiscal.inf.br/nfe")
public class NFDownloadNFe extends DFBase {
private static final long serialVersionUID = 5595066759407095694L;
@Attribute(name = "versao")
private String versao;
@Element(name = "tpAmb")
private DFAmbiente ambiente;
@Element(name = "xServ")
private String servico;
@Element(name = "CNPJ")
private String cnpj;
@Element(name = "chNFe")
private String chave;
public NFDownloadNFe() {
this.versao = null;
this.ambiente = null;
this.servico = null;
this.cnpj = null;
this.chave = null;
}
public String getVersao() {
return this.versao;
}
public void setVersao(final String versao) {
this.versao = versao;
}
public DFAmbiente getAmbiente() {
return this.ambiente;
}
public void setAmbiente(final DFAmbiente ambiente) {
this.ambiente = ambiente;
}
public String getServico() {
return this.servico;
}
public void setServico(final String servico) {
this.servico = servico;
}
public String getCnpj() {
return this.cnpj;
}
public void setCnpj(final String cnpj) {
DFStringValidador.cnpj(cnpj);
this.cnpj = cnpj;
}
public String getChave() {
return this.chave;
}
public void setChave(final String chave) {
DFStringValidador.exatamente44N(chave, "chave de acesso");
this.chave = chave;
}
}