in scim-spec/scim-spec-protocol/src/main/java/org/apache/directory/scim/protocol/data/ErrorResponse.java [104:120]
public boolean equals(final Object o) {
if (o == this) return true;
if (!(o instanceof ErrorResponse)) return false;
final ErrorResponse other = (ErrorResponse) o;
if (!other.canEqual((Object) this)) return false;
if (!super.equals(o)) return false;
final Object this$detail = this.getDetail();
final Object other$detail = other.getDetail();
if (this$detail == null ? other$detail != null : !this$detail.equals(other$detail)) 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$scimType = this.getScimType();
final Object other$scimType = other.getScimType();
if (this$scimType == null ? other$scimType != null : !this$scimType.equals(other$scimType)) return false;
return true;
}