ConnectionBuilderIF.java :  » Database-JDBC-Connection-Pool » proxool » org » logicalcobwebs » proxool » Java Open Source

Java Open Source » Database JDBC Connection Pool » proxool 
proxool » org » logicalcobwebs » proxool » ConnectionBuilderIF.java
/*
 * This software is released under a licence similar to the Apache Software Licence.
 * See org.logicalcobwebs.proxool.package.html for details.
 * The latest version is available at http://proxool.sourceforge.net
 */
package org.logicalcobwebs.proxool;

import java.sql.Connection;
import java.sql.SQLException;

/**
 * @author Bertrand Renuart
 *
 */
public interface ConnectionBuilderIF {

    Connection buildConnection(ConnectionPoolDefinitionIF cp) throws SQLException;
    
}

/*
 Revision history:
 $Log: ConnectionBuilderIF.java,v $
 Revision 1.1  2004/03/25 22:02:15  brenuart
 First step towards pluggable ConnectionBuilderIF & ConnectionValidatorIF.
 Include some minor refactoring that lead to deprecation of some PrototyperController methods.

 */
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.