view geo-backend/src/main/java/de/intevation/gnv/geobackend/base/connectionpool/ConnectionPool.java @ 886:8b442223741c

Ordered imports. Removed empty headers. geo-backend/trunk@856 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Mon, 29 Mar 2010 09:22:07 +0000
parents 1c3efbd2fc5a
children b757def3ff55
line wrap: on
line source
package de.intevation.gnv.geobackend.base.connectionpool;

import de.intevation.gnv.geobackend.base.connectionpool.exception.ConnectionException;

import java.sql.Connection;

import java.util.Properties;

/**
 * Interfacedefinition for an Generic ConnectionPool
 * @author Tim Englich <tim.englich@intevation.de>
 */
public interface ConnectionPool {

    /**
     * Delivers the Connection to the Database
     * @param connectionID the ID of the Connection
     * @return the Connection to the Database
     * @throws ConnectionException
     */
    public Connection getConnection(String connectionID) throws ConnectionException;

    /**
     * Returns the Connection to the Pool
     * @param connection the Connection which should be returned to the Pool
     * @throws ConnectionException
     */
    public void closeConnection(Connection connection) throws ConnectionException;

    /**
     * Initializes the ConnectionPool
     * @param properties The Properties which should be used for initializing theConnectionPool
     */
    public void initialize(Properties properties);

}

http://dive4elements.wald.intevation.org