com.fincatto.documentofiscal.nfe310.classes.cadastro.NFInfoConsultaCadastro 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.cadastro;
import com.fincatto.documentofiscal.DFBase;
import com.fincatto.documentofiscal.validadores.DFStringValidador;
import org.simpleframework.xml.Element;
public class NFInfoConsultaCadastro extends DFBase {
private static final long serialVersionUID = 2846137738770858117L;
@Element(name = "xServ")
private String servico;
@Element(name = "UF")
private String uf;
@Element(name = "IE", required = false)
private String inscricaoEstadual;
@Element(name = "CNPJ", required = false)
private String cnpj;
@Element(name = "CPF", required = false)
private String cpf;
public String getServico() {
return this.servico;
}
public void setServico(final String servico) {
this.servico = servico;
}
public String getUf() {
return this.uf;
}
public void setUf(final String uf) {
this.uf = uf;
}
public String getInscricaoEstadual() {
return this.inscricaoEstadual;
}
public void setInscricaoEstadual(final String inscricaoEstadual) {
this.inscricaoEstadual = inscricaoEstadual;
}
public String getCnpj() {
return this.cnpj;
}
public void setCnpj(final String cnpj) {
if (this.cpf != null) {
throw new IllegalStateException("Nao pode setar CPF pois CNPJ ja esta setado");
}
DFStringValidador.cnpj(cnpj);
this.cnpj = cnpj;
}
public String getCpf() {
return this.cpf;
}
public void setCpf(final String cpf) {
if (this.cnpj != null) {
throw new IllegalStateException("Nao pode setar CPF pois CNPJ ja esta setado");
}
DFStringValidador.cpf(cpf);
this.cpf = cpf;
}
}