public boolean equals()

in api/src/main/java/org/apache/fineract/cn/individuallending/api/v1/events/IndividualLoanCommandEvent.java [66:73]


  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    IndividualLoanCommandEvent that = (IndividualLoanCommandEvent) o;
    return Objects.equals(productIdentifier, that.productIdentifier) &&
        Objects.equals(caseIdentifier, that.caseIdentifier) &&
        Objects.equals(forDate, that.forDate);
  }