Uses of Interface
org.springframework.orm.jpa.EntityManagerPlusOperations

Packages that use EntityManagerPlusOperations
org.springframework.orm.jpa Package providing integration of JPA (Java Persistence API) with Spring concepts. 
 

Uses of EntityManagerPlusOperations in org.springframework.orm.jpa
 

Subinterfaces of EntityManagerPlusOperations in org.springframework.orm.jpa
 interface EntityManagerPlus
          Extension of the standard JPA EntityManager interface, linking in Spring's EntityManagerPlusOperations interface which defines additional operations (beyond JPA 1.0) in a vendor-independent fashion.
 

Methods in org.springframework.orm.jpa that return EntityManagerPlusOperations
 EntityManagerPlusOperations JpaDialect.getEntityManagerPlusOperations(javax.persistence.EntityManager rawEntityManager)
          Return an EntityManagerPlusOperations implementation for the given raw EntityManager.
 EntityManagerPlusOperations DefaultJpaDialect.getEntityManagerPlusOperations(javax.persistence.EntityManager rawEntityManager)
           
 

Methods in org.springframework.orm.jpa with parameters of type EntityManagerPlusOperations
static javax.persistence.EntityManager ExtendedEntityManagerCreator.createApplicationManagedEntityManager(javax.persistence.EntityManager rawEntityManager, EntityManagerPlusOperations plusOperations)
          Create an EntityManager that can join transactions with the joinTransaction() method, but is not automatically managed by the container.
static javax.persistence.EntityManager ExtendedEntityManagerCreator.createApplicationManagedEntityManager(javax.persistence.EntityManager rawEntityManager, EntityManagerPlusOperations plusOperations, PersistenceExceptionTranslator exceptionTranslator)
          Create an EntityManager that can join transactions with the joinTransaction() method, but is not automatically managed by the container.
static javax.persistence.EntityManager ExtendedEntityManagerCreator.createContainerManagedEntityManager(javax.persistence.EntityManager rawEntityManager, EntityManagerPlusOperations plusOperations)
          Create an EntityManager that automatically joins transactions on each operation in a transaction.
static javax.persistence.EntityManager ExtendedEntityManagerCreator.createContainerManagedEntityManager(javax.persistence.EntityManager rawEntityManager, EntityManagerPlusOperations plusOperations, PersistenceExceptionTranslator exceptionTranslator)
          Create an EntityManager that automatically joins transactions on each operation in a transaction.
 



Copyright © 2002-2008 The Spring Framework.