Skip to content

Commit

Permalink
tid tilbake
Browse files Browse the repository at this point in the history
  • Loading branch information
janolaveide committed Jul 1, 2021
1 parent 4e6dd70 commit f6bf3dc
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions felles/util/src/main/java/no/nav/vedtak/konfig/Tid.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package no.nav.vedtak.konfig;

import java.time.LocalDate;
import java.time.Month;

public class Tid {

public static final LocalDate TIDENES_BEGYNNELSE = LocalDate.of(-4712, Month.JANUARY, 1);
public static final LocalDate TIDENES_ENDE = LocalDate.of(9999, Month.DECEMBER, 31);

private Tid() {
// hidden
}
}

0 comments on commit f6bf3dc

Please sign in to comment.