All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fincatto.documentofiscal.cte400.classes.nota.CTeNotaInfoAutorizacaoDownload Maven / Gradle / Ivy

There is a newer version: 4.0.75
Show newest version
package com.fincatto.documentofiscal.cte400.classes.nota;

import com.fincatto.documentofiscal.DFBase;
import com.fincatto.documentofiscal.cte.CTeConfig;
import com.fincatto.documentofiscal.validadores.DFStringValidador;
import org.simpleframework.xml.Element;
import org.simpleframework.xml.Namespace;
import org.simpleframework.xml.Root;

/**
 * Autorizados para download do XML do DF-e
* Informar CNPJ ou CPF. Preencher os zeros não significativos. */ @Root(name = "autXML") @Namespace(reference = CTeConfig.NAMESPACE) public class CTeNotaInfoAutorizacaoDownload extends DFBase { private static final long serialVersionUID = -2141289176817470786L; @Element(name = "CNPJ", required = false) private String cnpj; @Element(name = "CPF", required = false) private String cpf; public String getCnpj() { return this.cnpj; } /** * CNPJ do autorizado
* Informar zeros não significativos */ public void setCnpj(final String cnpj) { DFStringValidador.cnpj(cnpj); this.cnpj = cnpj; } public String getCpf() { return this.cpf; } /** * CPF do autorizado
* Informar zeros não significativos */ public void setCpf(final String cpf) { DFStringValidador.cpf(cpf); this.cpf = cpf; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy