From 2782ca81a94d675fc8f23727832f399f154e38a9 Mon Sep 17 00:00:00 2001 From: Rune Lind Date: Wed, 6 Nov 2024 17:25:54 +0100 Subject: [PATCH] PRODFIX KafkaDLQDto builder kan ikke bruke non nullable (#706) --- .../nav/melosys/eessi/controller/dto/KafkaDLQDto.kt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/melosys-eessi-app/src/main/java/no/nav/melosys/eessi/controller/dto/KafkaDLQDto.kt b/melosys-eessi-app/src/main/java/no/nav/melosys/eessi/controller/dto/KafkaDLQDto.kt index e5f035cc..a1646e0c 100644 --- a/melosys-eessi-app/src/main/java/no/nav/melosys/eessi/controller/dto/KafkaDLQDto.kt +++ b/melosys-eessi-app/src/main/java/no/nav/melosys/eessi/controller/dto/KafkaDLQDto.kt @@ -23,14 +23,14 @@ data class KafkaDLQDto( private var melding: String? = null private var skip: Boolean? = null - fun id(id: String) = apply { this.id = id } + fun id(id: String?) = apply { this.id = id } fun queueType(queueType: QueueType) = apply { this.queueType = queueType } - fun tidRegistrert(tidRegistrert: LocalDateTime) = apply { this.tidRegistrert = tidRegistrert } - fun tidSistRekjort(tidSistRekjort: LocalDateTime) = apply { this.tidSistRekjort = tidSistRekjort } - fun sisteFeilmelding(sisteFeilmelding: String) = apply { this.sisteFeilmelding = sisteFeilmelding } + fun tidRegistrert(tidRegistrert: LocalDateTime?) = apply { this.tidRegistrert = tidRegistrert } + fun tidSistRekjort(tidSistRekjort: LocalDateTime?) = apply { this.tidSistRekjort = tidSistRekjort } + fun sisteFeilmelding(sisteFeilmelding: String?) = apply { this.sisteFeilmelding = sisteFeilmelding } fun antallRekjoringer(antallRekjoringer: Int) = apply { this.antallRekjoringer = antallRekjoringer } - fun melding(melding: String) = apply { this.melding = melding } - fun skip(skip: Boolean) = apply { this.skip = skip } + fun melding(melding: String?) = apply { this.melding = melding } + fun skip(skip: Boolean?) = apply { this.skip = skip } fun build() = KafkaDLQDto( id = id,