com.fincatto.documentofiscal.cte400.classes.os.CTeOSInfoCTeNormalInfoServico 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.os;
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.ElementList;
import org.simpleframework.xml.Namespace;
import org.simpleframework.xml.Root;
import java.util.List;
@Root(name = "infServico")
@Namespace(reference = CTeConfig.NAMESPACE)
public class CTeOSInfoCTeNormalInfoServico extends DFBase {
private static final long serialVersionUID = -6918550471184804059L;
@Element(name = "xDescServ")
private String descricaoServico;
@ElementList(name = "infQ", inline = true, required = false)
private List informacoesQuantidadeCarga;
public String getDescricaoServico() {
return descricaoServico;
}
public void setDescricaoServico(final String descricaoServico) {
DFStringValidador.tamanho30(descricaoServico, "Descricao Servico");
this.descricaoServico = descricaoServico;
}
public List getInformacoesQuantidadeCarga() {
return informacoesQuantidadeCarga;
}
public void setInformacoesQuantidadeCarga(List informacoesQuantidadeCarga) {
this.informacoesQuantidadeCarga = informacoesQuantidadeCarga;
}
}