* be queried to determine the access type.
*/
public void testCallbackEntity() {
EntityManager em = emf.createEntityManager();
BaseCallback bc = new BaseCallback();
bc.setId(new Random().nextInt());
bc.setName("BaseCallback");
// Persist the entity
em.getTransaction().begin();
em.persist(bc);
em.getTransaction().commit();