Uses of Interface
org.springframework.transaction.PlatformTransactionManager

Packages that use PlatformTransactionManager
org.springframework.jdbc.datasource Provides a utility class for easy DataSource access, a PlatformTransactionManager for a single DataSource, and various simple DataSource implementations. 
org.springframework.orm.hibernate Package providing integration of Hibernate with Spring concepts. 
org.springframework.orm.jdo Package providing integration of JDO with Spring concepts. 
org.springframework.transaction.interceptor AOP-based solution for declarative transaction demarcation. 
org.springframework.transaction.jta Transaction SPI implementation for JTA. 
org.springframework.transaction.support Support classes for the org.springframework.transaction package. 
 

Uses of PlatformTransactionManager in org.springframework.jdbc.datasource
 

Classes in org.springframework.jdbc.datasource that implement PlatformTransactionManager
 class DataSourceTransactionManager
          PlatformTransactionManager implementation for single JDBC data sources.
 

Uses of PlatformTransactionManager in org.springframework.orm.hibernate
 

Classes in org.springframework.orm.hibernate that implement PlatformTransactionManager
 class HibernateTransactionManager
          PlatformTransactionManager implementation for single Hibernate session factories.
 

Uses of PlatformTransactionManager in org.springframework.orm.jdo
 

Classes in org.springframework.orm.jdo that implement PlatformTransactionManager
 class JdoTransactionManager
          PlatformTransactionManager implementation for single JDO persistence manager factories.
 

Uses of PlatformTransactionManager in org.springframework.transaction.interceptor
 

Methods in org.springframework.transaction.interceptor that return PlatformTransactionManager
 PlatformTransactionManager TransactionInterceptor.getTransactionManager()
          Return the transaction manager.
 

Methods in org.springframework.transaction.interceptor with parameters of type PlatformTransactionManager
 void TransactionProxyFactoryBean.setTransactionManager(PlatformTransactionManager transactionManager)
          Set the transaction manager.
 void TransactionInterceptor.setTransactionManager(PlatformTransactionManager transactionManager)
          Set the transaction manager.
 

Uses of PlatformTransactionManager in org.springframework.transaction.jta
 

Classes in org.springframework.transaction.jta that implement PlatformTransactionManager
 class JtaTransactionManager
          PlatformTransactionManager implementation for JTA, i.e.
 

Uses of PlatformTransactionManager in org.springframework.transaction.support
 

Classes in org.springframework.transaction.support that implement PlatformTransactionManager
 class AbstractPlatformTransactionManager
          Abstract base class that allows for easy implementation of concrete platform transaction managers like JtaTransactionManager and HibernateTransactionManager.
 

Methods in org.springframework.transaction.support that return PlatformTransactionManager
 PlatformTransactionManager TransactionTemplate.getTransactionManager()
          Return the transaction management strategy to be used.
 

Methods in org.springframework.transaction.support with parameters of type PlatformTransactionManager
 void TransactionTemplate.setTransactionManager(PlatformTransactionManager transactionManager)
          Set the transaction management strategy to be used.
 

Constructors in org.springframework.transaction.support with parameters of type PlatformTransactionManager
TransactionTemplate(PlatformTransactionManager transactionManager)
          Create a new TransactionTemplate instance.
 



Copyright (C) 2003-2004 The Spring Framework Project.