*/
protected static Map<String, String> formatPropertiesMap(Map<String, MetaValue> propertiesMap) {
Map<String, String> formattedPropertiesMap = new HashMap<String, String>();
for(String propertyName : propertiesMap.keySet()) {
SimpleValueSupport propertyMetaValue = (SimpleValueSupport)propertiesMap.get(propertyName);
String propertyStringValue = propertyMetaValue.getValue().toString();
formattedPropertiesMap.put(propertyName, propertyStringValue);
}
return formattedPropertiesMap;
}