Uses of Interface
org.springframework.transaction.PlatformTransactionManager

Packages that use PlatformTransactionManager
org.springframework.jca.cci.connection Provides a utility class for easy ConnectionFactory access, a PlatformTransactionManager for local CCI transactions, and various simple ConnectionFactory proxies/adapters. 
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.jms.connection Provides a PlatformTransactionManager implementation for a single JMS ConnectionFactory, and a SingleConnectionFactory adapter. 
org.springframework.orm.hibernate Package providing integration of Hibernate 2.1 with Spring concepts. 
org.springframework.orm.jdo Package providing integration of JDO (Java Date Objects) with Spring concepts. 
org.springframework.orm.ojb Package providing integration of Apache OJB with Spring concepts. 
org.springframework.orm.toplink Package providing integration of Oracle TopLink with Spring concepts. 
org.springframework.scheduling.quartz Support classes for the open source scheduler Quartz, allowing to set up Quartz Schedulers, JobDetails and Triggers as beans in a Spring context. 
org.springframework.test Superclasses for tests requiring Spring application contexts, including support for transactional execution of test cases, with automatic rollback on completion. 
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.jca.cci.connection
 

Classes in org.springframework.jca.cci.connection that implement PlatformTransactionManager
 class CciLocalTransactionManager
          PlatformTransactionManager implementation that performs local transactions on a single CCI ConnectionFactory.
 

Uses of PlatformTransactionManager in org.springframework.jdbc.datasource
 

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

Uses of PlatformTransactionManager in org.springframework.jms.connection
 

Classes in org.springframework.jms.connection that implement PlatformTransactionManager
 class JmsTransactionManager
          PlatformTransactionManager implementation for a single JMS ConnectionFactory.
 class JmsTransactionManager102
          A subclass of JmsTransactionManager that uses the JMS 1.0.2 specification, rather than the JMS 1.1 methods used by JmsTransactionManager itself.
 

Uses of PlatformTransactionManager in org.springframework.orm.hibernate
 

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

Uses of PlatformTransactionManager in org.springframework.orm.jdo
 

Classes in org.springframework.orm.jdo that implement PlatformTransactionManager
 class JdoTransactionManager
          PlatformTransactionManager implementation for a single JDO PersistenceManagerFactory.
 

Uses of PlatformTransactionManager in org.springframework.orm.ojb
 

Classes in org.springframework.orm.ojb that implement PlatformTransactionManager
 class PersistenceBrokerTransactionManager
          PlatformTransactionManager implementation for a single OJB persistence broker key.
 

Uses of PlatformTransactionManager in org.springframework.orm.toplink
 

Classes in org.springframework.orm.toplink that implement PlatformTransactionManager
 class TopLinkTransactionManager
          PlatformTransactionManager implementation for a single TopLink SessionFactory.
 

Uses of PlatformTransactionManager in org.springframework.scheduling.quartz
 

Methods in org.springframework.scheduling.quartz with parameters of type PlatformTransactionManager
 void SchedulerFactoryBean.setTransactionManager(PlatformTransactionManager transactionManager)
          Set the transaction manager to be used for registering jobs and triggers that are defined by this SchedulerFactoryBean.
 

Uses of PlatformTransactionManager in org.springframework.test
 

Fields in org.springframework.test declared as PlatformTransactionManager
protected  PlatformTransactionManager AbstractTransactionalSpringContextTests.transactionManager
          The transaction manager to use
 

Methods in org.springframework.test with parameters of type PlatformTransactionManager
 void AbstractTransactionalSpringContextTests.setTransactionManager(PlatformTransactionManager ptm)
          Specify the transaction manager to use.
 

Uses of PlatformTransactionManager in org.springframework.transaction.interceptor
 

Fields in org.springframework.transaction.interceptor declared as PlatformTransactionManager
protected  PlatformTransactionManager TransactionAspectSupport.transactionManager
          Delegate used to create, commit and rollback transactions
 

Methods in org.springframework.transaction.interceptor that return PlatformTransactionManager
 PlatformTransactionManager TransactionAspectSupport.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 TransactionAspectSupport.setTransactionManager(PlatformTransactionManager transactionManager)
          Set the transaction manager.
 

Constructors in org.springframework.transaction.interceptor with parameters of type PlatformTransactionManager
TransactionInterceptor(PlatformTransactionManager ptm, Properties attributes)
          Create a new TransactionInterceptor.
TransactionInterceptor(PlatformTransactionManager ptm, TransactionAttributeSource tas)
          Create a new TransactionInterceptor.
 

Uses of PlatformTransactionManager in org.springframework.transaction.jta
 

Classes in org.springframework.transaction.jta that implement PlatformTransactionManager
 class JtaTransactionManager
          PlatformTransactionManager implementation for JTA, delegating to a backend JTA provider.
 class WebLogicJtaTransactionManager
          Special JtaTransactionManager version for BEA WebLogic (7.0, 8.1 and higher).
 

Uses of PlatformTransactionManager in org.springframework.transaction.support
 

Classes in org.springframework.transaction.support that implement PlatformTransactionManager
 class AbstractPlatformTransactionManager
          Abstract base class that implements Spring's standard transaction workflow, serving as basis for concrete platform transaction managers like JtaTransactionManager and DataSourceTransactionManager.
 

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) 2002-2007 The Spring Framework Project.