private void createWriteAttributePropertyMap(CompositeOperation cop, PropertyMap property,
PropertyDefinitionMap propertyDefinition, Address address) {
// A map of simples can be me an empty map if all of the simples are optional and unset
SimpleEntry<String, Map<String, Object>> entry = this.preparePropertyMap(property, propertyDefinition);
Operation writeAttribute = new WriteAttribute(address, entry.getKey(), entry.getValue());
cop.addStep(writeAttribute);
}