public boolean equals()

in service/src/main/java/org/apache/fineract/cn/rhythm/service/internal/repository/ApplicationEntity.java [87:93]


  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    ApplicationEntity that = (ApplicationEntity) o;
    return Objects.equals(tenantIdentifier, that.tenantIdentifier) &&
            Objects.equals(applicationIdentifier, that.applicationIdentifier);
  }