1 /* 2 * This software is released under a licence similar to the Apache Software Licence. 3 * See org.logicalcobwebs.proxool.package.html for details. 4 * The latest version is available at http://proxool.sourceforge.net 5 */ 6 package org.logicalcobwebs.proxool; 7 8 import java.sql.Connection; 9 import java.sql.SQLException; 10 11 /** 12 * @author Bertrand Renuart 13 * 14 */ 15 public interface ConnectionBuilderIF { 16 17 Connection buildConnection(ConnectionPoolDefinitionIF cp) throws SQLException; 18 19 } 20 21 /* 22 Revision history: 23 $Log: ConnectionBuilderIF.java,v $ 24 Revision 1.1 2004/03/25 22:02:15 brenuart 25 First step towards pluggable ConnectionBuilderIF & ConnectionValidatorIF. 26 Include some minor refactoring that lead to deprecation of some PrototyperController methods. 27 28 */