@Override
 public void setCountryIdentifier(Country countryIdentifier) {
   if (countryIdentifier != null) {
     setPropertyValue(
         mdrDatabase.getVocabulary().countryIdentifier,
         mdrDatabase.getUtil().createTypedLiteral(countryIdentifier.toString()));
   } else {
     setPropertyValue(mdrDatabase.getVocabulary().countryIdentifier, null);
   }
 }