32 EntityManagerFactory factory = null;
34 factory = (EntityManagerFactory)
new InitialContext().lookup(entityManagerFactoryJndiName);
35 }
catch (NamingException e) {
36 throw new RuntimeException(e);
38 EntityManager em = factory.createEntityManager();
39 session.getTransactionManager().enlist(
new JpaKeycloakTransaction(em));