in service/src/main/java/org/apache/fineract/cn/individuallending/internal/command/ImportCommand.java [52:59]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ImportCommand that = (ImportCommand) o;
return Objects.equals(productIdentifier, that.productIdentifier) &&
Objects.equals(caseIdentifier, that.caseIdentifier) &&
Objects.equals(importParameters, that.importParameters);
}