com.fincatto.documentofiscal.cte200.classes.cte.CTInfoEntregaComHora 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 com.fincatto.documentofiscal.DFBase;
import com.fincatto.documentofiscal.cte200.classes.CTTipoEntregaHorario;
import org.simpleframework.xml.Element;
import java.time.LocalTime;
public class CTInfoEntregaComHora extends DFBase {
private static final long serialVersionUID = 6042838442221064469L;
@Element(name = "tpHor")
private CTTipoEntregaHorario tipoHorario;
@Element(name = "hProg")
private LocalTime horarioProgramado;
public LocalTime getHorarioProgramado() {
return this.horarioProgramado;
}
public void setHorarioProgramado(final LocalTime horarioProgramado) {
this.horarioProgramado = horarioProgramado;
}
public CTTipoEntregaHorario getTipoHorario() {
return this.tipoHorario;
}
public void setTipoHorario(final CTTipoEntregaHorario tipoHorario) {
if (!CTTipoEntregaHorario.COM_HORARIO.contains(tipoHorario)) {
throw new IllegalArgumentException("O tipo de per\u00edodo programado para entrega deve ser com horario");
}
this.tipoHorario = tipoHorario;
}
}