package eu.eudat.configurations.file; import org.springframework.boot.context.properties.ConfigurationProperties; @ConfigurationProperties(prefix = "tmp") public class TmpProperties { private TimeProperties time; public TimeProperties getTime() { return time; } public void setTime(TimeProperties time) { this.time = time; } }