com.fincatto.documentofiscal.mdfe3.classes.nota.evento.MDFeProtocoloEvento 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.mdfe3.classes.nota.evento;
import com.fincatto.documentofiscal.DFBase;
import com.fincatto.documentofiscal.validadores.DFBigDecimalValidador;
import org.simpleframework.xml.Attribute;
import org.simpleframework.xml.Element;
import org.simpleframework.xml.Namespace;
import org.simpleframework.xml.Root;
import java.math.BigDecimal;
@Root(name = "procEventoMDFe")
@Namespace(reference = "http://www.portalfiscal.inf.br/mdfe")
public class MDFeProtocoloEvento extends DFBase {
private static final long serialVersionUID = 8849959763700133248L;
@Attribute(name = "versao")
private String versao;
@Element(name = "eventoMDFe")
private MDFeEvento evento;
@Element(name = "retEventoMDFe", required = false)
private MDFeEventoRetorno eventoRetorno;
public String getVersao() {
return this.versao;
}
public void setVersao(final BigDecimal versao) {
this.versao = DFBigDecimalValidador.tamanho4Com2CasasDecimais(versao, "Versao");
}
public MDFeEvento getEvento() {
return this.evento;
}
public void setEvento(final MDFeEvento evento) {
this.evento = evento;
}
public void setEventoRetorno(final MDFeEventoRetorno infoEventoRetorno) {
this.eventoRetorno = infoEventoRetorno;
}
public MDFeEventoRetorno getEventoRetorno() {
return this.eventoRetorno;
}
}