PostgresqlDatabase.java [src/java/m/gis] Revision: 13f86dea363c34ca36688b71617cfb69d196e484  Date: Tue May 12 17:30:39 MDT 2015
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package m.gis;

import java.util.logging.Logger;

/**
 *
 * @author ktraff
 */
public class PostgresqlDatabase extends Database {

    public PostgresqlDatabase(String hostname, String port, String dbName, String username, String password, Logger log) {
        super(hostname, port, dbName, username, password, log);
    }
    
}