InjectManager webBeans = InjectManager.create();
BeanFactory factory = webBeans.createBeanFactory(Authenticator.class);
factory.type(Authenticator.class);
factory.type(AdminAuthenticator.class);
webBeans.addBean(factory.singleton(_auth));
}
if (_transactionManager != null)
_transactionManager.start();
} catch (Exception e) {