mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-12-04 15:49:33 +01:00
Add equals in node info
This commit is contained in:
@@ -186,6 +186,39 @@ class EntryInfo : NodeInfo {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override fun equals(other: Any?): Boolean {
|
||||||
|
if (this === other) return true
|
||||||
|
if (other !is EntryInfo) return false
|
||||||
|
if (!super.equals(other)) return false
|
||||||
|
|
||||||
|
if (id != other.id) return false
|
||||||
|
if (username != other.username) return false
|
||||||
|
if (password != other.password) return false
|
||||||
|
if (url != other.url) return false
|
||||||
|
if (notes != other.notes) return false
|
||||||
|
if (customFields != other.customFields) return false
|
||||||
|
if (attachments != other.attachments) return false
|
||||||
|
if (otpModel != other.otpModel) return false
|
||||||
|
if (isTemplate != other.isTemplate) return false
|
||||||
|
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun hashCode(): Int {
|
||||||
|
var result = super.hashCode()
|
||||||
|
result = 31 * result + id.hashCode()
|
||||||
|
result = 31 * result + username.hashCode()
|
||||||
|
result = 31 * result + password.hashCode()
|
||||||
|
result = 31 * result + url.hashCode()
|
||||||
|
result = 31 * result + notes.hashCode()
|
||||||
|
result = 31 * result + customFields.hashCode()
|
||||||
|
result = 31 * result + attachments.hashCode()
|
||||||
|
result = 31 * result + (otpModel?.hashCode() ?: 0)
|
||||||
|
result = 31 * result + isTemplate.hashCode()
|
||||||
|
return result
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
|
|
||||||
const val WEB_DOMAIN_FIELD_NAME = "URL"
|
const val WEB_DOMAIN_FIELD_NAME = "URL"
|
||||||
|
|||||||
@@ -24,6 +24,22 @@ class GroupInfo : NodeInfo {
|
|||||||
parcel.writeString(notes)
|
parcel.writeString(notes)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override fun equals(other: Any?): Boolean {
|
||||||
|
if (this === other) return true
|
||||||
|
if (other !is GroupInfo) return false
|
||||||
|
if (!super.equals(other)) return false
|
||||||
|
|
||||||
|
if (notes != other.notes) return false
|
||||||
|
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun hashCode(): Int {
|
||||||
|
var result = super.hashCode()
|
||||||
|
result = 31 * result + (notes?.hashCode() ?: 0)
|
||||||
|
return result
|
||||||
|
}
|
||||||
|
|
||||||
companion object CREATOR : Parcelable.Creator<GroupInfo> {
|
companion object CREATOR : Parcelable.Creator<GroupInfo> {
|
||||||
override fun createFromParcel(parcel: Parcel): GroupInfo {
|
override fun createFromParcel(parcel: Parcel): GroupInfo {
|
||||||
return GroupInfo(parcel)
|
return GroupInfo(parcel)
|
||||||
|
|||||||
@@ -36,6 +36,30 @@ open class NodeInfo() : Parcelable {
|
|||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override fun equals(other: Any?): Boolean {
|
||||||
|
if (this === other) return true
|
||||||
|
if (other !is NodeInfo) return false
|
||||||
|
|
||||||
|
if (title != other.title) return false
|
||||||
|
if (icon != other.icon) return false
|
||||||
|
if (creationTime != other.creationTime) return false
|
||||||
|
if (lastModificationTime != other.lastModificationTime) return false
|
||||||
|
if (expires != other.expires) return false
|
||||||
|
if (expiryTime != other.expiryTime) return false
|
||||||
|
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun hashCode(): Int {
|
||||||
|
var result = title.hashCode()
|
||||||
|
result = 31 * result + icon.hashCode()
|
||||||
|
result = 31 * result + creationTime.hashCode()
|
||||||
|
result = 31 * result + lastModificationTime.hashCode()
|
||||||
|
result = 31 * result + expires.hashCode()
|
||||||
|
result = 31 * result + expiryTime.hashCode()
|
||||||
|
return result
|
||||||
|
}
|
||||||
|
|
||||||
companion object CREATOR : Parcelable.Creator<NodeInfo> {
|
companion object CREATOR : Parcelable.Creator<NodeInfo> {
|
||||||
override fun createFromParcel(parcel: Parcel): NodeInfo {
|
override fun createFromParcel(parcel: Parcel): NodeInfo {
|
||||||
return NodeInfo(parcel)
|
return NodeInfo(parcel)
|
||||||
|
|||||||
Reference in New Issue
Block a user