Boolean initOnStartup = singletonBeanMetaData.isInitOnStartup();
if (initOnStartup != null && initOnStartup.booleanValue() == true) {
singletonComponentDescription.initOnStartup();
}
// bean level lock-type
LockType lockType = singletonBeanMetaData.getLockType();
singletonComponentDescription.setBeanLevelLockType(singletonComponentDescription.getEJBClassName(), lockType);
// concurrency management type
ConcurrencyManagementType concurrencyManagementType = singletonBeanMetaData.getConcurrencyManagementType();
if (concurrencyManagementType == ConcurrencyManagementType.BEAN) {