com.fincatto.documentofiscal.cte200.classes.cte.CTInfoEntregaSemHora 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.cte200.classes.cte;
import org.simpleframework.xml.Element;
import com.fincatto.documentofiscal.DFBase;
import com.fincatto.documentofiscal.cte200.classes.CTTipoEntregaHorario;
public class CTInfoEntregaSemHora extends DFBase {
private static final long serialVersionUID = -8339490222357216168L;
@Element(name = "tpHor")
private CTTipoEntregaHorario tipoHorario;
public void setTipoHorario(final CTTipoEntregaHorario tipoHorario) {
if (!CTTipoEntregaHorario.SEM_HORARIO.equals(tipoHorario)) {
throw new IllegalArgumentException("O tipo de per\u00edodo programado para entrega deve ser sem hor\u00e1rio");
}
this.tipoHorario = tipoHorario;
}
public CTTipoEntregaHorario getTipoHorario() {
return this.tipoHorario;
}
}