Skip to content

Commit

Permalink
Add (further) setIdentification Method to ConceptDescription
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Eicke authored Jul 14, 2023
1 parent ffe1710 commit 2fd6dd9
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,10 @@ public void setAdministration(AdministrativeInformation information) {
Identifiable.createAsFacade(this, getKeyElement()).setAdministration(information);
}

public void setIdentification(IIdentifier id) {
setIdentification(id.getIdType(), id.getId());
}

public void setIdentification(IdentifierType idType, String id) {
Identifiable.createAsFacadeNonStrict(this, getKeyElement()).setIdentification(idType, id);
}
Expand Down

0 comments on commit 2fd6dd9

Please sign in to comment.