oracle.toplink.threetier
Class ExternalConnectionPool

java.lang.Object
  |
  +--oracle.toplink.threetier.ConnectionPool
        |
        +--oracle.toplink.threetier.ExternalConnectionPool

public class ExternalConnectionPool
extends ConnectionPool

Purpose: This subclass is intended to be used with external connection pools. For these pools, TopLink does not control the pooling behaviour. The login should have the usesExternalConnectionPooling set to "true".


Constructor Summary
ExternalConnectionPool()
          PUBLIC: Build a new external connection pool.
ExternalConnectionPool(java.lang.String name, DatabaseLogin login, ServerSession owner)
          PUBLIC: Build a new external connection pool.
 
Method Summary
TypeMethod
 
Methods inherited from class oracle.toplink.threetier.ConnectionPool
getLogin, getMaxNumberOfConnections, getMinNumberOfConnections, getName, setLogin, setMaxNumberOfConnections, setMinNumberOfConnections, setName
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ExternalConnectionPool

public ExternalConnectionPool()
PUBLIC: Build a new external connection pool. The JDBC driver is responsible for pooling the connections.

ExternalConnectionPool

public ExternalConnectionPool(java.lang.String name,
                              DatabaseLogin login,
                              ServerSession owner)
PUBLIC: Build a new external connection pool. The JDBC driver is responsible for pooling the connections.
Method Detail