PostgresqlDatabase.java [src/java/m/gis] Revision: 70467d69a58db7d081f87586decf837e5a6df84b  Date: Mon May 11 17:10:11 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;

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

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