com.fincatto.documentofiscal.nfe310.classes.nota.NFNotaInfo 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.nota;
import com.fincatto.documentofiscal.DFBase;
import com.fincatto.documentofiscal.validadores.DFBigDecimalValidador;
import com.fincatto.documentofiscal.validadores.DFListValidador;
import com.fincatto.documentofiscal.validadores.DFStringValidador;
import org.simpleframework.xml.*;
import java.math.BigDecimal;
import java.util.List;
@Root(name = "infNFe")
@Namespace(reference = "http://www.portalfiscal.inf.br/nfe")
public class NFNotaInfo extends DFBase {
private static final long serialVersionUID = 4569152242139670228L;
public static final String IDENT = "NFe";
@Attribute(name = "Id")
private String identificador;
@Attribute(name = "versao")
private String versao;
@Element(name = "ide")
private NFNotaInfoIdentificacao identificacao;
@Element(name = "emit")
private NFNotaInfoEmitente emitente;
@Element(name = "avulsa", required = false)
private NFNotaInfoAvulsa avulsa;
@Element(name = "dest", required = false)
private NFNotaInfoDestinatario destinatario;
@Element(name = "retirada", required = false)
private NFNotaInfoLocal retirada;
@Element(name = "entrega", required = false)
private NFNotaInfoLocal entrega;
@ElementList(entry = "autXML", inline = true, required = false)
private List pessoasAutorizadasDownloadNFe;
@ElementList(entry = "det", inline = true)
private List itens;
@Element(name = "total")
private NFNotaInfoTotal total;
@Element(name = "transp")
private NFNotaInfoTransporte transporte;
@Element(name = "cobr", required = false)
private NFNotaInfoCobranca cobranca;
@ElementList(entry = "pag", inline = true, required = false)
private List pagamentos;
@Element(name = "infAdic", required = false)
private NFNotaInfoInformacoesAdicionais informacoesAdicionais;
@Element(name = "exporta", required = false)
private NFNotaInfoExportacao exportacao;
@Element(name = "compra", required = false)
private NFNotaInfoCompra compra;
@Element(name = "cana", required = false)
private NFNotaInfoCana cana;
/**
* Pega a chave de acesso a partir do identificador.
* @return Chave de acesso.
*/
public String getChaveAcesso() {
return this.identificador.replace(NFNotaInfo.IDENT, "");
}
public void setIdentificador(final String identificador) {
DFStringValidador.exatamente44N(identificador, "Identificador");
this.identificador = NFNotaInfo.IDENT + identificador;
}
public String getIdentificador() {
return this.identificador;
}
public void setVersao(final BigDecimal versao) {
this.versao = DFBigDecimalValidador.tamanho4Com2CasasDecimais(versao, "Versao");
}
public NFNotaInfoIdentificacao getIdentificacao() {
return this.identificacao;
}
public void setIdentificacao(final NFNotaInfoIdentificacao identificacao) {
this.identificacao = identificacao;
}
public void setEmitente(final NFNotaInfoEmitente emitente) {
this.emitente = emitente;
}
public void setAvulsa(final NFNotaInfoAvulsa avulsa) {
this.avulsa = avulsa;
}
public NFNotaInfoDestinatario getDestinatario() {
return this.destinatario;
}
public void setDestinatario(final NFNotaInfoDestinatario destinatario) {
this.destinatario = destinatario;
}
public void setItens(final List itens) {
DFListValidador.tamanho990(itens, "Itens da Nota");
this.itens = itens;
}
public void setRetirada(final NFNotaInfoLocal retirada) {
this.retirada = retirada;
}
public void setEntrega(final NFNotaInfoLocal entrega) {
this.entrega = entrega;
}
public void setCobranca(final NFNotaInfoCobranca cobranca) {
this.cobranca = cobranca;
}
public void setTotal(final NFNotaInfoTotal total) {
this.total = total;
}
public void setTransporte(final NFNotaInfoTransporte transporte) {
this.transporte = transporte;
}
public void setInformacoesAdicionais(final NFNotaInfoInformacoesAdicionais informacoesAdicionais) {
this.informacoesAdicionais = informacoesAdicionais;
}
public void setExportacao(final NFNotaInfoExportacao exportacao) {
this.exportacao = exportacao;
}
public void setCompra(final NFNotaInfoCompra compra) {
this.compra = compra;
}
public void setCana(final NFNotaInfoCana cana) {
this.cana = cana;
}
public void setPessoasAutorizadasDownloadNFe(final List pessoasAutorizadasDownloadNFe) {
DFListValidador.tamanho10(pessoasAutorizadasDownloadNFe, "Pessoas Autorizadas Download NFe");
this.pessoasAutorizadasDownloadNFe = pessoasAutorizadasDownloadNFe;
}
public void setPagamentos(final List pagamentos) {
DFListValidador.tamanho100(pagamentos, "Pagamentos");
this.pagamentos = pagamentos;
}
public String getVersao() {
return this.versao;
}
public NFNotaInfoEmitente getEmitente() {
return this.emitente;
}
public NFNotaInfoAvulsa getAvulsa() {
return this.avulsa;
}
public NFNotaInfoLocal getRetirada() {
return this.retirada;
}
public NFNotaInfoLocal getEntrega() {
return this.entrega;
}
public List getPessoasAutorizadasDownloadNFe() {
return this.pessoasAutorizadasDownloadNFe;
}
public List getItens() {
return this.itens;
}
public NFNotaInfoTotal getTotal() {
return this.total;
}
public NFNotaInfoTransporte getTransporte() {
return this.transporte;
}
public NFNotaInfoCobranca getCobranca() {
return this.cobranca;
}
public List getPagamentos() {
return this.pagamentos;
}
public NFNotaInfoInformacoesAdicionais getInformacoesAdicionais() {
return this.informacoesAdicionais;
}
public NFNotaInfoExportacao getExportacao() {
return this.exportacao;
}
public NFNotaInfoCompra getCompra() {
return this.compra;
}
public NFNotaInfoCana getCana() {
return this.cana;
}
}