in scim-spec/scim-spec-schema/src/main/java/org/apache/directory/scim/spec/resources/ScimGroup.java [126:140]
public boolean equals(final Object o) {
if (o == this) return true;
if (!(o instanceof ScimGroup)) return false;
final ScimGroup other = (ScimGroup) o;
if (!other.canEqual((Object) this)) return false;
if (!super.equals(o)) return false;
final Object this$displayName = this.getDisplayName();
final Object other$displayName = other.getDisplayName();
if (this$displayName == null ? other$displayName != null : !this$displayName.equals(other$displayName))
return false;
final Object this$members = this.getMembers();
final Object other$members = other.getMembers();
if (this$members == null ? other$members != null : !this$members.equals(other$members)) return false;
return true;
}