An Alternative Solution for Instant would be ZonedDateTime which is also present in the java.time package
import java.time.*; Instant OneYearFromNow = ZonedDateTime.now().plusYears(1).toInstant();