in commons/src/main/java/com/epam/eco/schemacatalog/domain/schema/FullSchemaInfo.java [130:143]
public boolean equals(Object obj) {
if (!super.equals(obj)) {
return false;
}
FullSchemaInfo that = (FullSchemaInfo) obj;
return
Objects.equals(this.compatibilityLevel, that.compatibilityLevel) &&
Objects.equals(this.globalCompatibilityLevel, that.globalCompatibilityLevel) &&
Objects.equals(this.mode, that.mode) &&
Objects.equals(this.deleted, that.deleted) &&
Objects.equals(this.versionLatest, that.versionLatest) &&
Objects.equals(this.metadata, that.metadata);
}