@Override
    public boolean equals(Object o) {
        if (this.userId == null) return false;
        if (!(o instanceof AppUser)) return false;
        AppUser other = (AppUser) o;