package eu.eudat.configurations.file; import java.time.temporal.ChronoUnit; public class TimeProperties { private Integer interval; private ChronoUnit timeUnit; private StartTimeProperties startTime; public Integer getInterval() { return interval; } public void setInterval(Integer interval) { this.interval = interval; } public ChronoUnit getTimeUnit() { return timeUnit; } public void setTimeUnit(ChronoUnit timeUnit) { this.timeUnit = timeUnit; } public StartTimeProperties getStartTime() { return startTime; } public void setStartTime(StartTimeProperties startTime) { this.startTime = startTime; } }