in src/main/java/org/openvasp/core/model/ivms101/NationalIdentification.java [213:225]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
NationalIdentification nationalIdentification = (NationalIdentification) o;
return Objects.equals(this.nationalIdentifier, nationalIdentification.nationalIdentifier) &&
Objects.equals(this.nationalIdentifierType, nationalIdentification.nationalIdentifierType) &&
Objects.equals(this.countryOfIssue, nationalIdentification.countryOfIssue) &&
Objects.equals(this.registrationAuthority, nationalIdentification.registrationAuthority);
}