public boolean equals()

in api/src/main/java/org/apache/fineract/cn/individuallending/api/v1/domain/product/Moratorium.java [75:82]


  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    Moratorium that = (Moratorium) o;
    return Objects.equals(chargeTask, that.chargeTask) &&
            Objects.equals(temporalUnit, that.temporalUnit) &&
            Objects.equals(period, that.period);
  }