CmisPropertyUriDefinitionType target = (CmisPropertyUriDefinitionType) result;
convertChoiceUriList(source.getChoices(), target.getChoice());
if (source.getDefaultValue() != null) {
CmisPropertyUri defaultValue = new CmisPropertyUri();
defaultValue.setPropertyDefinitionId(propertyDefinition.getId());
for (String value : source.getDefaultValue()) {
defaultValue.getValue().add(value);
}
target.setDefaultValue(defaultValue);
}
} else {
return null;