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 10 /** 11 * @author Bertrand Renuart 12 * 13 */ 14 public interface ConnectionValidatorIF { 15 16 boolean validate(ConnectionPoolDefinitionIF cpd, Connection connection); 17 } 18 19 /* 20 Revision history: 21 $Log: ConnectionValidatorIF.java,v $ 22 Revision 1.1 2004/03/25 22:02:15 brenuart 23 First step towards pluggable ConnectionBuilderIF & ConnectionValidatorIF. 24 Include some minor refactoring that lead to deprecation of some PrototyperController methods. 25 26 */