nz.co.gregs.dbvolution.databases.PostgresDBOverSSL Maven / Gradle / Ivy
/*
* Copyright 2013 Gregory Graham.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package nz.co.gregs.dbvolution.databases;
import java.sql.SQLException;
import javax.sql.DataSource;
import nz.co.gregs.dbvolution.databases.definitions.DBDefinition;
/**
* Extends the PostgreSQL database connection by adding SSL.
*
* Support DBvolution at
* Patreon
*
* @author Gregory Graham
*/
public class PostgresDBOverSSL extends PostgresDB {
public static final long serialVersionUID = 1l;
/**
*
* Provides a convenient constructor for DBDatabases that have configuration
* details hardwired or are able to automatically retrieve the details.
*
*
* This constructor creates an empty DBDatabase with only the default
* settings, in particular with no driver, URL, username, password, or
* {@link DBDefinition}
*
*
* Most programmers should not call this constructor directly. Instead you
* should define a no-parameter constructor that supplies the details for
* creating an instance using a more complete constructor.
*
*
* DBDatabase encapsulates the knowledge of the database, in particular the
* syntax of the database in the DBDefinition and the connection details from
* a DataSource.
*
* @see DBDefinition
*/
protected PostgresDBOverSSL() {
}
/**
* Creates a {@link DBDatabase } instance for the data source.
*
* @param ds ds
*/
public PostgresDBOverSSL(DataSource ds) {
super(ds);
}
/**
* Creates a DBDatabase for a PostgreSQL database over SSL.
*
* @param hostname host name
* @param databaseName databaseName
* @param port port
* @param username username
* @param password password
* @param urlExtras urlExtras
*/
public PostgresDBOverSSL(String hostname, int port, String databaseName, String username, String password, String urlExtras) {
super(hostname, port, databaseName, username, password, "ssl=true&sslfactory=org.postgresql.ssl.NonValidatingFactory" + (urlExtras == null || urlExtras.isEmpty() ? "" : "&" + urlExtras));
}
/**
* Creates a DBDatabase for a PostgreSQL database over SSL.
*
* @param hostname host name
* @param password password
* @param databaseName databaseName
* @param port port
* @param username username
*/
public PostgresDBOverSSL(String hostname, int port, String databaseName, String username, String password) {
this(hostname, port, databaseName, username, password, "");
}
@Override
public DBDatabase clone() throws CloneNotSupportedException {
return super.clone(); //To change body of generated methods, choose Tools | Templates.
}
}