in scim-spec/scim-spec-schema/src/main/java/org/apache/directory/scim/spec/extension/EnterpriseExtension.java [97:123]
public boolean equals(final Object o) {
if (o == this) return true;
if (!(o instanceof EnterpriseExtension)) return false;
final EnterpriseExtension other = (EnterpriseExtension) o;
if (!other.canEqual((Object) this)) return false;
final Object this$employeeNumber = this.getEmployeeNumber();
final Object other$employeeNumber = other.getEmployeeNumber();
if (this$employeeNumber == null ? other$employeeNumber != null : !this$employeeNumber.equals(other$employeeNumber))
return false;
final Object this$costCenter = this.getCostCenter();
final Object other$costCenter = other.getCostCenter();
if (this$costCenter == null ? other$costCenter != null : !this$costCenter.equals(other$costCenter)) return false;
final Object this$organization = this.getOrganization();
final Object other$organization = other.getOrganization();
if (this$organization == null ? other$organization != null : !this$organization.equals(other$organization))
return false;
final Object this$division = this.getDivision();
final Object other$division = other.getDivision();
if (this$division == null ? other$division != null : !this$division.equals(other$division)) return false;
final Object this$department = this.getDepartment();
final Object other$department = other.getDepartment();
if (this$department == null ? other$department != null : !this$department.equals(other$department)) return false;
final Object this$manager = this.getManager();
final Object other$manager = other.getManager();
if (this$manager == null ? other$manager != null : !this$manager.equals(other$manager)) return false;
return true;
}