com.fincatto.documentofiscal.cte400.classes.nota.CTeNotaInfoCTeNormalInfoModalAquaviarioConteinerLacre 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.cte400.classes.nota;
import com.fincatto.documentofiscal.DFBase;
import com.fincatto.documentofiscal.cte.CTeConfig;
import com.fincatto.documentofiscal.validadores.DFStringValidador;
import org.simpleframework.xml.Element;
import org.simpleframework.xml.Namespace;
import org.simpleframework.xml.Root;
/**
* Grupo de informações dos lacres dos cointainers da qtde da carga
*/
@Root(name = "lacre")
@Namespace(reference = CTeConfig.NAMESPACE)
public class CTeNotaInfoCTeNormalInfoModalAquaviarioConteinerLacre extends DFBase {
private static final long serialVersionUID = 626415727361958489L;
@Element(name = "nLacre")
private String numeroLacre;
public String getNumeroLacre() {
return this.numeroLacre;
}
/**
* Lacre
*/
public void setNumeroLacre(final String numeroLacre) {
DFStringValidador.tamanho20(numeroLacre, "Lacre");
this.numeroLacre = numeroLacre;
}
}