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.
package org.heigit.ohsome.ohsomeapi.oshdb;
import com.zaxxer.hikari.HikariConfig;
import org.heigit.bigspatialdata.oshdb.api.db.OSHDBDatabase;
import org.heigit.bigspatialdata.oshdb.api.db.OSHDBJdbc;
import org.heigit.bigspatialdata.oshdb.util.tagtranslator.TagTranslator;
/** Holds the database connection objects. */
public class DbConnData {
public static OSHDBDatabase db = null;
public static OSHDBJdbc keytables = null;
public static TagTranslator tagTranslator = null;
public static RemoteTagTranslator mapTagTranslator = null;
public static HikariConfig keytablesDbPoolConfig = null;
private DbConnData() {
throw new IllegalStateException("Utility class");
}
}