19 package org.sleuthkit.datamodel;
29 private final String deviceID;
32 this.account = account;
33 this.deviceID = deviceId;
57 hash = 11 * hash + (this.account != null ? this.account.
hashCode() : 0);
58 hash = 11 * hash + (this.deviceID != null ? this.deviceID.hashCode() : 0);
70 if (getClass() != obj.getClass()) {
74 if ((this.deviceID == null) ? (other.deviceID != null) : !this.deviceID.equals(other.deviceID)) {
77 if (this.account != other.account && (
this.account == null || !
this.account.equals(other.account))) {
boolean equals(Object obj)