com.fincatto.documentofiscal.nfe310.classes.nota.NFNotaInfoLacre 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.DFStringValidador;
import org.simpleframework.xml.Element;
public class NFNotaInfoLacre extends DFBase {
private static final long serialVersionUID = -5184684979849337146L;
@Element(name = "nLacre")
private String numeroLacres;
public void setNumeroLacre(final String numeroLacres) {
DFStringValidador.tamanho60(numeroLacres, "Numero Lacre");
this.numeroLacres = numeroLacres;
}
public String getNumeroLacres() {
return this.numeroLacres;
}
}