public boolean equals()

in service/src/main/java/org/apache/fineract/cn/provisioner/internal/repository/ApplicationEntity.java [81:89]


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

    ApplicationEntity that = (ApplicationEntity) o;

    return name.equals(that.name);

  }