All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.heigit.ohsome.ohsomeapi.oshdb.DbConnData Maven / Gradle / Ivy

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");
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy