this.account = account; this.userId = userId;
if (this == o) return true; if (!(o instanceof AccountAndUser)) return false; final AccountAndUser other = (AccountAndUser) o; return this.account.equals(other.account) && this.userId == other.userId;
return account.hashCode() + userId;
return account.toString() + " u" + userId;