public boolean equals()

in service/src/main/java/org/apache/fineract/cn/customer/internal/repository/CustomerEntity.java [244:252]


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

    CustomerEntity that = (CustomerEntity) o;

    return identifier.equals(that.identifier);

  }