log.info("Creating JPAPersistenceManager for Persistence Unit " + this.name);
}
private Map<String,JPAEntityType> adaptrexEntities;
private void initialize() throws Exception {
SecurityModel securityModel = PersistenceTools.getSecurityModel();
adaptrexEntities = new HashMap<String,JPAEntityType>();
for (EntityType<?> entityType : metaModel.getEntities()) {
JPAEntityType jpaEntity = new JPAEntityType(metaModel, entityType, securityModel);
adaptrexEntities.put(jpaEntity.getName(), jpaEntity);
}