3 Commits

Author SHA1 Message Date
e5debdf436 [RELEASE] - release version: 0.5.0 2024-12-28 07:37:31 +01:00
5f5831c4a9 update Device response to use Serializable for caching 2024-12-27 22:36:10 +01:00
8f727cc262 [RELEASE] - bump version 2024-12-10 23:47:04 +01:00
2 changed files with 9 additions and 3 deletions

View File

@@ -1,3 +1,3 @@
kotlin.code.style=official kotlin.code.style=official
version=0.4.0 version=0.5.0
catalog=0.6.0 catalog=0.7.0

View File

@@ -1,5 +1,6 @@
package ltd.hlaeja.library.deviceRegistry package ltd.hlaeja.library.deviceRegistry
import java.io.Serializable
import java.util.UUID import java.util.UUID
object Identity { object Identity {
@@ -8,5 +9,10 @@ object Identity {
val client: UUID, val client: UUID,
val node: UUID, val node: UUID,
val device: UUID, val device: UUID,
) ) : Serializable {
companion object {
@Suppress("ConstPropertyName")
private const val serialVersionUID = 1L
}
}
} }