
tech.figure.eventstream.stream.infrastructure.UUIDAdapter.kt Maven / Gradle / Ivy
package tech.figure.eventstream.stream.infrastructure
import com.squareup.moshi.FromJson
import com.squareup.moshi.ToJson
import java.util.UUID
class UUIDAdapter {
@ToJson
fun toJson(uuid: UUID) = uuid.toString()
@FromJson
fun fromJson(s: String): UUID = UUID.fromString(s)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy