Business Components

oracle.jbo.server
Class ConnectionPoolManagerFactory

java.lang.Object
  |
  +--oracle.jbo.server.ConnectionPoolManagerFactory

public class ConnectionPoolManagerFactory
extends java.lang.Object

A factory for creating instances of the designated ConnectionPoolManager implementation. This factory returns an instance of the ConnectionPoolManager class that is declared in the BC4J property, jbo.ConnectionPoolManager. BC4J provides a default connection pool manager, {link oracle.jbo.server.ConnectionPoolManagerImpl 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.

See Also:

Method Summary
static ConnectionPoolManager getConnectionPoolManager()
          Creates instances of a designated implementation of the ConnectionPoolManager interface.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getConnectionPoolManager

public static ConnectionPoolManager getConnectionPoolManager()
Creates instances of a designated implementation of the ConnectionPoolManager interface.

One implementation of ConnectionPoolManager is provided in this package, ConnectionPoolManagerImpl. This implementation or a user-defined implementation, may be specified by setting the jbo.ConnectionPoolManager property in the jboserver.properties file.


Business Components