com.fincatto.documentofiscal.nfe310.classes.evento.manifestacaodestinatario.NFEventoManifestacaoDestinatario 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.manifestacaodestinatario;
import com.fincatto.documentofiscal.DFBase;
import com.fincatto.documentofiscal.validadores.DFBigDecimalValidador;
import org.simpleframework.xml.Attribute;
import org.simpleframework.xml.Element;
import java.math.BigDecimal;
public class NFEventoManifestacaoDestinatario extends DFBase {
private static final long serialVersionUID = 4608659349977367804L;
@Attribute(name = "versao")
private String versao;
@Element(name = "infEvento")
private NFInfoEventoManifestacaoDestinatario infoEvento;
@Element(name = "Signature", required = false)
private String assinatura;
public void setVersao(final BigDecimal versao) {
this.versao = DFBigDecimalValidador.tamanho5Com2CasasDecimais(versao, "Versao");
}
public NFInfoEventoManifestacaoDestinatario getInfoEvento() {
return this.infoEvento;
}
public String getVersao() {
return this.versao;
}
public void setInfoEvento(final NFInfoEventoManifestacaoDestinatario infoEvento) {
this.infoEvento = infoEvento;
}
public void setAssinatura(final String assinatura) {
this.assinatura = assinatura;
}
public String getAssinatura() {
return this.assinatura;
}
}