public boolean equals()

in service/src/main/java/org/apache/fineract/cn/office/internal/repository/EmployeeEntity.java [149:157]


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

    EmployeeEntity that = (EmployeeEntity) o;

    return identifier.equals(that.identifier);

  }