view geo-backend/src/main/java/de/intevation/gnv/geobackend/base/connectionpool/ConnectionPool.java @ 1127:ebeb56428409

Added license headers and license file. geo-backend/trunk@1261 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Tue, 02 Nov 2010 17:52:22 +0000
parents b757def3ff55
children
line wrap: on
line source
/*
 * Copyright (c) 2010 by Intevation GmbH
 *
 * This program is free software under the LGPL (>=v2.1)
 * Read the file LGPL.txt coming with the software for details
 * or visit http://www.gnu.org/licenses/ if it does not exist.
 */

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 <a href="mailto:tim.englich@intevation.de">Tim Englich</a>
 */
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