Skip to content

Commit

Permalink
Endret til 'set' for felter i AutoMergeIkkeMulig
Browse files Browse the repository at this point in the history
  • Loading branch information
nilsmsa committed Dec 2, 2024
1 parent d047315 commit c18c5fd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ fun genererHendelse(metadata: Metadata, manuellIdOppdatering: ManuellIdOppdateri
hendelseId = UUID.randomUUID(),
metadata = metadata,
gjeldeneIdentitetsnummer = manuellIdOppdatering.gjeldeneIdentitetsnummer,
pdlIdentitetsnummer = manuellIdOppdatering.pdlIdentitetsnummer,
lokaleAlias = manuellIdOppdatering.lokaleAlias.map(::toDomeneAlias),
perioder = manuellIdOppdatering.perioder.map(::tilDomenePerioderad)
pdlIdentitetsnummer = manuellIdOppdatering.pdlIdentitetsnummer.toSet(),
lokaleAlias = manuellIdOppdatering.lokaleAlias.map(::toDomeneAlias).toSet(),
perioder = manuellIdOppdatering.perioder.map(::tilDomenePerioderad).toSet()
).let { HendelseRecord(alias.recordKey, it) }
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ class AutomatiskIdMergeIkkeMulig(
override val hendelseId: UUID,
override val metadata: Metadata,
val gjeldeneIdentitetsnummer: String?,
val pdlIdentitetsnummer: List<String>,
val lokaleAlias: List<Alias>,
val perioder: List<PeriodeRad>
val pdlIdentitetsnummer: Set<String>,
val lokaleAlias: Set<Alias>,
val perioder: Set<PeriodeRad>
) : Hendelse {
override val hendelseType: String = automatiskIdMergeIkkeMulig
}
Expand Down

0 comments on commit c18c5fd

Please sign in to comment.