propertyValue = modelProperties.getProperty(item, property.getName());
// property not set
if(propertyValue == null) {
if(property.isOptional() == false) {
throw new SpagoBIRuntimeException("Impossible to initialize property [" + property.getName() + "] of entity [" + item.getUniqueName() + "]");
}
propertyValue = property.getDefaultValue();
}
// property not set + property default value not set