// If the bean was just created then optional load its metadata syncrhonously
// Do this outside the syncrhonized block
if (bean != null && loadSynchronous) {
try {
bean.loadSynchronous();
} catch (EmsUnsupportedTypeException e) {
// Keep loading other beans even if one has an unsupported type
log.info("Bean metadata not loaded, unsupported type on [" + objectName.toString() + "]", e);
}
}