public boolean equals()

in service/src/main/java/org/apache/fineract/cn/individuallending/internal/repository/CaseCreditWorthinessFactorEntity.java [124:132]


  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    CaseCreditWorthinessFactorEntity that = (CaseCreditWorthinessFactorEntity) o;
    return Objects.equals(caseId, that.caseId) &&
            Objects.equals(customerIdentifier, that.customerIdentifier) &&
            Objects.equals(positionInFactor, that.positionInFactor) &&
            factorType == that.factorType;
  }