diff --git a/src/main/kotlin/dev/usbharu/hideout/domain/model/ap/Key.kt b/src/main/kotlin/dev/usbharu/hideout/domain/model/ap/Key.kt index 850bacb8..63986e4c 100644 --- a/src/main/kotlin/dev/usbharu/hideout/domain/model/ap/Key.kt +++ b/src/main/kotlin/dev/usbharu/hideout/domain/model/ap/Key.kt @@ -8,29 +8,36 @@ open class Key : Object { constructor( type: List, name: String, - id: String?, + id: String, owner: String?, publicKeyPem: String? - ) : super(add(type, "Key"), name, id) { + ) : super( + type = add(list = type, type = "Key"), + name = name, + id = id + ) { this.owner = owner this.publicKeyPem = publicKeyPem } + override fun equals(other: Any?): Boolean { if (this === other) return true if (other !is Key) return false if (!super.equals(other)) return false - if (id != other.id) return false if (owner != other.owner) return false return publicKeyPem == other.publicKeyPem } override fun hashCode(): Int { var result = super.hashCode() - result = 31 * result + (id?.hashCode() ?: 0) result = 31 * result + (owner?.hashCode() ?: 0) result = 31 * result + (publicKeyPem?.hashCode() ?: 0) return result } + + override fun toString(): String { + return "Key(owner=$owner, publicKeyPem=$publicKeyPem) ${super.toString()}" + } } diff --git a/src/main/kotlin/dev/usbharu/hideout/domain/model/ap/Object.kt b/src/main/kotlin/dev/usbharu/hideout/domain/model/ap/Object.kt index ae52c978..1adcb211 100644 --- a/src/main/kotlin/dev/usbharu/hideout/domain/model/ap/Object.kt +++ b/src/main/kotlin/dev/usbharu/hideout/domain/model/ap/Object.kt @@ -20,6 +20,7 @@ open class Object : JsonLd { this.id = id } + override fun equals(other: Any?): Boolean { if (this === other) return true if (other !is Object) return false @@ -27,7 +28,8 @@ open class Object : JsonLd { if (type != other.type) return false if (name != other.name) return false - return actor == other.actor + if (actor != other.actor) return false + return id == other.id } override fun hashCode(): Int { @@ -35,10 +37,13 @@ open class Object : JsonLd { result = 31 * result + type.hashCode() result = 31 * result + (name?.hashCode() ?: 0) result = 31 * result + (actor?.hashCode() ?: 0) + result = 31 * result + (id?.hashCode() ?: 0) return result } - override fun toString(): String = "Object(type=$type, name=$name, actor=$actor) ${super.toString()}" + override fun toString(): String { + return "Object(type=$type, name=$name, actor=$actor, id=$id) ${super.toString()}" + } companion object { @JvmStatic