public class ConnectionPoolManagerFactory
extends java.lang.Object
ConnectionPoolManager
 class that is declared in the
 Business Components for Java property, jbo.ConnectionPoolManager.
 Business Components for Java provides a default connection pool manager, ConnectionPoolManagerImpl, that will be loaded if a custom connection pool manager has not been specified.
The connection pool manager reference in the connection pool factory is a static, singleton. Resetting the connection pool manager after it has been initialized is currently not supported.
ConnectionPoolManager| Modifier and Type | Method and Description | 
|---|---|
static ConnectionPoolManager | 
getConnectionPoolManager()
Creates instances of a designated implementation of the
  
ConnectionPoolManager
 interface. | 
static ConnectionPoolManager | 
getConnectionPoolManager(java.util.Hashtable context)  | 
static boolean | 
isInitialized()  | 
public static ConnectionPoolManager getConnectionPoolManager()
ConnectionPoolManager
 interface.
 For example:
   // Get a connection pool manager instance
   // from the connection pool manager factory
      ConnectionPoolManager connectionPoolManager =
      ConnectionPoolManagerFactory.getConnectionPoolManager();
 
 
 One implementation of ConnectionPoolManager is provided in this
 package at, ConnectionPoolManagerImpl.
 This user-defined implementation, can be specified by
 setting the jbo.ConnectionPoolManager property in the
 jboserver.properties file or
 -Djbo.ConnectionPoolManager in the JDeveloper IDE.
public static ConnectionPoolManager getConnectionPoolManager(java.util.Hashtable context)
public static boolean isInitialized()