org.apache.commons.dbcp.managed
Class ManagedDataSource

java.lang.Object
  extended by org.apache.commons.dbcp.PoolingDataSource
      extended by org.apache.commons.dbcp.managed.ManagedDataSource
All Implemented Interfaces:
Wrapper, CommonDataSource, DataSource

public class ManagedDataSource
extends PoolingDataSource

The ManagedDataSource is a PoolingDataSource that creates ManagedConnections.

Version:
$Revision: 892307 $
Author:
Dain Sundstrom

Field Summary
 
Fields inherited from class org.apache.commons.dbcp.PoolingDataSource
_logWriter, _pool
 
Constructor Summary
ManagedDataSource()
          Creates an uninitialized datasource.
ManagedDataSource(ObjectPool pool, TransactionRegistry transactionRegistry)
          Creates a ManagedDataSource which obtains connections from the specified pool and manages them using the specified transaction registry.
 
Method Summary
 Connection getConnection()
          Return a Connection from my pool, according to the contract specified by ObjectPool.borrowObject().
 void setTransactionRegistry(TransactionRegistry transactionRegistry)
          Sets the transaction registry from the XAConnectionFactory used to create the pool.
 
Methods inherited from class org.apache.commons.dbcp.PoolingDataSource
getConnection, getLoginTimeout, getLogWriter, isAccessToUnderlyingConnectionAllowed, isWrapperFor, setAccessToUnderlyingConnectionAllowed, setLoginTimeout, setLogWriter, setPool, unwrap
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ManagedDataSource

public ManagedDataSource()
Creates an uninitialized datasource. Before this data source can be used a pool and transaction registry must be set.


ManagedDataSource

public ManagedDataSource(ObjectPool pool,
                         TransactionRegistry transactionRegistry)
Creates a ManagedDataSource which obtains connections from the specified pool and manages them using the specified transaction registry. The TransactionRegistry must be the transaction registry obtained from the XAConnectionFactory used to create the connection pool. If not an error will occure when attempting to use the connection in a global transaction because the XAResource object associated with the connection will be unavailable.

Parameters:
pool - the connection pool
transactionRegistry - the transaction registry obtained from the XAConnectionFactory used to create the connection pool object factory
Method Detail

setTransactionRegistry

public void setTransactionRegistry(TransactionRegistry transactionRegistry)
Sets the transaction registry from the XAConnectionFactory used to create the pool. The transaction registry can only be set once using either a connector or this setter method.

Parameters:
transactionRegistry - the transaction registry acquired from the XAConnectionFactory used to create the pool

getConnection

public Connection getConnection()
                         throws SQLException
Description copied from class: PoolingDataSource
Return a Connection from my pool, according to the contract specified by ObjectPool.borrowObject().

Specified by:
getConnection in interface DataSource
Overrides:
getConnection in class PoolingDataSource
Throws:
SQLException


Copyright © 2001-2010 The Apache Software Foundation. All Rights Reserved.