public boolean equals()

in src/main/java/org/openvasp/core/model/ivms101/Beneficiary.java [101:111]


  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    Beneficiary beneficiary = (Beneficiary) o;
    return Objects.equals(this.beneficiaryPersons, beneficiary.beneficiaryPersons) &&
        Objects.equals(this.accountNumbers, beneficiary.accountNumbers);
  }