Provides information about an individual connection. You can get a collection of these from {@link ProxoolFacade#getConnectionInfos ProxoolFacade}. You get back information about all the connections in a particular pool.
String alias = "myPool"; Iterator i = ProxoolFacade.getConnectionInfos(alias).iterator(); while (i.hasNext()) { ConnectionInfoIF c = (ConnectionInfoIF)i.next(); ... }
@version $Revision: 1.12 $, $Date: 2005/10/07 08:18:23 $
@author billhorsman
@author $Author: billhorsman $ (current maintainer)