public boolean equals()

in service/src/main/java/org/apache/fineract/cn/provisioner/internal/repository/UserEntity.java [106:114]


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

    UserEntity that = (UserEntity) o;

    return name.equals(that.name);

  }