org.heigit.ohsome.ohsomeapi.oshdb.DbConnData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ohsome-api Show documentation
Show all versions of ohsome-api Show documentation
A public Web-RESTful-API for "ohsome" OpenStreetMap history data.
The newest version!
package org.heigit.ohsome.ohsomeapi.oshdb;
import javax.sql.DataSource;
import org.heigit.ohsome.oshdb.api.db.OSHDBDatabase;
import org.heigit.ohsome.oshdb.util.tagtranslator.TagTranslator;
/** Holds the database connection objects. */
public class DbConnData {
public static OSHDBDatabase db = null;
public static TagTranslator tagTranslator = null;
public static DataSource dbSource = null;
public static DataSource keytablesDbSource = null;
private DbConnData() {
throw new IllegalStateException("Utility class");
}
}