Skip to content

Commit d2c4831

Browse files
authored
Legger til ny modul for konstanter. (#408)
* Legger til ny modul for konstanter. Inneholder pr. nå forventet saksbehandlingstid. * Fikser versjon
1 parent 9690b07 commit d2c4831

File tree

3 files changed

+23
-0
lines changed

3 files changed

+23
-0
lines changed

konstant/pom.xml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<parent>
7+
<groupId>no.nav.k9</groupId>
8+
<artifactId>k9-format</artifactId>
9+
<version>${revision}${sha1}${changelist}</version>
10+
</parent>
11+
12+
<artifactId>konstant</artifactId>
13+
14+
</project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package no.nav.k9.konstant;
2+
3+
import java.time.Duration;
4+
import java.time.temporal.ChronoUnit;
5+
6+
public class Konstant {
7+
static final Duration FORVENTET_SAKSBEHANDLINGSTID = Duration.of(8, ChronoUnit.WEEKS);
8+
}

pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
<module>soknad-omsorgspenger-utbetaling</module>
1717
<module>soknad-frisinn</module>
1818
<module>ettersendelse</module>
19+
<module>konstant</module>
1920
</modules>
2021

2122
<properties>

0 commit comments

Comments
 (0)