bindings.put("comp/ORB", new SystemComponentReference(ORB.class));
bindings.put("comp/HandleDelegate", new SystemComponentReference(HandleDelegate.class));
// bind bean validation objects
bindings.put("comp/ValidatorFactory", new IntraVmJndiReference(Assembler.VALIDATOR_FACTORY_NAMING_CONTEXT + uniqueId));
bindings.put("comp/Validator", new IntraVmJndiReference(Assembler.VALIDATOR_NAMING_CONTEXT + uniqueId));
// bind UserTransaction if bean managed transactions
if (beanManagedTransactions) {
final UserTransaction userTransaction = new CoreUserTransaction(transactionManager);
bindings.put("comp/UserTransaction", userTransaction);