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