com.fincatto.documentofiscal.cte300.classes.os.CTeOSInfoAutorizacaoDownload 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.cte300.classes.os;
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;
@Root(name = "autXML")
@Namespace(reference = CTeConfig.NAMESPACE)
public class CTeOSInfoAutorizacaoDownload extends DFBase {
private static final long serialVersionUID = -2755368776450778969L;
@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;
}
}