in commons/src/main/java/com/epam/eco/schemacatalog/fts/JsonSearchQuery.java [56:68]
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
JsonSearchQuery that = (JsonSearchQuery) obj;
return
Objects.equals(this.json, that.json) &&
Objects.equals(this.getPage(), that.getPage()) &&
Objects.equals(this.getPageSize(), that.getPageSize());
}