This repository has been archived by the owner on Nov 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
f Bruk sterke typer for fødselsnummer og aktørid i AktøridCache
- Loading branch information
Showing
3 changed files
with
11 additions
and
8 deletions.
There are no files selected for viewing
6 changes: 4 additions & 2 deletions
6
src/main/kotlin/no/nav/fo/veilarbregistrering/aktorIdCache/AktorIdCache.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
package no.nav.fo.veilarbregistrering.aktorIdCache | ||
|
||
import no.nav.fo.veilarbregistrering.bruker.AktorId | ||
import no.nav.fo.veilarbregistrering.bruker.Foedselsnummer | ||
import java.time.LocalDateTime | ||
|
||
data class AktorIdCache( | ||
val foedselsnummer: String, | ||
val aktorId: String, | ||
val foedselsnummer: Foedselsnummer, | ||
val aktorId: AktorId, | ||
val opprettetDato: LocalDateTime | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters