in scim-spec/scim-spec-protocol/src/main/java/org/apache/directory/scim/protocol/data/BulkResponse.java [84:101]
public boolean equals(final Object o) {
if (o == this) return true;
if (!(o instanceof BulkResponse)) return false;
final BulkResponse other = (BulkResponse) o;
if (!other.canEqual((Object) this)) return false;
if (!super.equals(o)) return false;
final Object this$operations = this.getOperations();
final Object other$operations = other.getOperations();
if (this$operations == null ? other$operations != null : !this$operations.equals(other$operations)) return false;
final Object this$status = this.getStatus();
final Object other$status = other.getStatus();
if (this$status == null ? other$status != null : !this$status.equals(other$status)) return false;
final Object this$errorResponse = this.getErrorResponse();
final Object other$errorResponse = other.getErrorResponse();
if (this$errorResponse == null ? other$errorResponse != null : !this$errorResponse.equals(other$errorResponse))
return false;
return true;
}