[jbossseam-issues] [JBoss JIRA] Commented: (JBSEAM-3424) Support Hibernate in IdentityManager

Scott Olcott (JIRA) jira-events at lists.jboss.org
Wed Sep 17 16:03:20 EDT 2008


    [ https://jira.jboss.org/jira/browse/JBSEAM-3424?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12430086#action_12430086 ] 

Scott Olcott commented on JBSEAM-3424:
--------------------------------------

Sorry,  I forgot to implement createQuery in HibernateIdentityStoreEntityLoader.  Here it is:

@Override
   public Query createQuery(String queryString, Map<String, Object> queryParameters)
   {
      Query query = getPersistenceContext().createQuery(queryString);
      setQueryParameters(queryParameters, query);
      return query;
   }

> Support Hibernate in IdentityManager
> ------------------------------------
>
>                 Key: JBSEAM-3424
>                 URL: https://jira.jboss.org/jira/browse/JBSEAM-3424
>             Project: Seam
>          Issue Type: Feature Request
>    Affects Versions: 2.1.0.BETA1
>            Reporter: Scott Olcott
>            Assignee: Shane Bryzak
>         Attachments: seamspaceChanges.txt, securityChanges.txt, securityXsdChanges.txt
>
>
> The JpaIdentityStore could easily work with hibernate also.  If you abstracted out the EntityManager and the hiberate Session from the JpaIdentityStore kind of like the AbstractEntityLoader does for the EntityConverter, you could continue to use the JpaIdentityStore for both JPA and Hibernate.  Although you would probably want to rename JpaIdentityStore

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the seam-issues mailing list