public boolean equals()

in api/src/main/java/org/apache/fineract/cn/portfolio/api/v1/domain/TaskDefinition.java [102:112]


  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    TaskDefinition that = (TaskDefinition) o;
    return Objects.equals(identifier, that.identifier) &&
            Objects.equals(name, that.name) &&
            Objects.equals(description, that.description) &&
            Objects.equals(actions, that.actions) &&
            Objects.equals(fourEyes, that.fourEyes) &&
            Objects.equals(mandatory, that.mandatory);
  }