in commons/src/main/java/com/epam/eco/schemacatalog/domain/schema/LiteSchemaInfo.java [102:116]
public boolean equals(Object obj) {
if (!super.equals(obj)) {
return false;
}
LiteSchemaInfo that = (LiteSchemaInfo)obj;
return
Objects.equals(this.name, that.name) &&
Objects.equals(this.namespace, that.namespace) &&
Objects.equals(this.fullName, that.fullName) &&
Objects.equals(this.compatibility, that.compatibility) &&
Objects.equals(this.mode, that.mode) &&
Objects.equals(this.versionLatest, that.versionLatest) &&
Objects.equals(this.deleted, that.deleted);
}