in scim-spec/scim-spec-protocol/src/main/java/org/apache/directory/scim/protocol/data/ListResponse.java [95:113]
public boolean equals(final Object o) {
if (o == this) return true;
if (!(o instanceof ListResponse)) return false;
final ListResponse<?> other = (ListResponse<?>) o;
if (!other.canEqual((Object) this)) return false;
if (!super.equals(o)) return false;
if (this.getTotalResults() != other.getTotalResults()) return false;
final Object this$startIndex = this.getStartIndex();
final Object other$startIndex = other.getStartIndex();
if (this$startIndex == null ? other$startIndex != null : !this$startIndex.equals(other$startIndex)) return false;
final Object this$itemsPerPage = this.getItemsPerPage();
final Object other$itemsPerPage = other.getItemsPerPage();
if (this$itemsPerPage == null ? other$itemsPerPage != null : !this$itemsPerPage.equals(other$itemsPerPage))
return false;
final Object this$resources = this.getResources();
final Object other$resources = other.getResources();
if (this$resources == null ? other$resources != null : !this$resources.equals(other$resources)) return false;
return true;
}