: new OwnableReentrantStripedLockContainer(configuration.locking().concurrencyLevel()) :
notTransactional ? new ReentrantPerEntryLockContainer(configuration.locking().concurrencyLevel())
: new OwnableReentrantPerEntryLockContainer(configuration.locking().concurrencyLevel());
return (T) lockContainer;
} else if (componentType.equals(L1Manager.class)) {
return (T) new L1ManagerImpl();
} else if (componentType.equals(TransactionFactory.class)) {
return (T) new TransactionFactory();
} else if (componentType.equals(BackupSender.class)) {
return (T) new BackupSenderImpl(globalConfiguration.sites().localSite());
} else if (componentType.equals(TotalOrderManager.class)) {