Skip to content

Commit d4a5975

Browse files
Utvide event class (#120)
* Lagt til eventId og createdAt feltene i Event modellen * Økt utgave til emottak-utils * Fjerner eventId feltet
1 parent 210c87d commit d4a5975

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

emottak-utils/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ publishing {
1717
create<MavenPublication>("mavenJava") {
1818
groupId = "no.nav.emottak"
1919
artifactId = "emottak-utils"
20-
version = "0.0.8"
20+
version = "0.0.9"
2121
from(components["java"])
2222
}
2323
}

emottak-utils/src/main/kotlin/no/nav/emottak/utils/events/model/Event.kt

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ package no.nav.emottak.utils.events.model
22

33
import kotlinx.serialization.Serializable
44
import kotlinx.serialization.json.Json
5+
import no.nav.emottak.utils.InstantSerializer
56
import no.nav.emottak.utils.UuidSerializer
7+
import java.time.Instant
68
import kotlin.uuid.ExperimentalUuidApi
79
import kotlin.uuid.Uuid
810

@@ -14,7 +16,9 @@ data class Event(
1416
val requestId: Uuid,
1517
val contentId: String? = null,
1618
val messageId: String,
17-
val eventData: String? = null
19+
val eventData: String? = null,
20+
@Serializable(with = InstantSerializer::class)
21+
val createdAt: Instant = Instant.now()
1822
) {
1923
fun toByteArray(): ByteArray {
2024
return Json.encodeToString(this).toByteArray()

0 commit comments

Comments
 (0)