case URI:
case HTML:
if(property.isMultiValued()){
List<String> htmlPropertyValues = (List<String>) property.getValues();
for (String htmlPropertyValue : htmlPropertyValues) {
rd.addField(propertyId, htmlPropertyValue);
}
} else {
String stringValue = (String) property.getValue();
if(StringUtils.isNotEmpty(stringValue)){
rd.addField(propertyId, stringValue);