public boolean equals()

in service/src/main/java/org/apache/fineract/cn/provisioner/internal/repository/TenantEntity.java [147:155]


  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;

    TenantEntity that = (TenantEntity) o;

    return identifier.equals(that.identifier);

  }