/**
  * Gets a concept by an identifier (mapping or UUID)
  *
  * @param identifier the identifier
  * @return the concept
  * @throws IllegalArgumentException if the concept could not be found
  */
 public static Concept getConcept(String identifier) {
   return MetadataUtils.getConcept(identifier);
 }