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

org.hibernate.spatial.HibernateSpatialConfigurationSettings Maven / Gradle / Ivy

There is a newer version: 7.0.0.Beta2
Show newest version
/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or .
 */
package org.hibernate.spatial;

import java.io.Serializable;

/**
 * Hibernate Spatial specific configuration settings.
 *
 * @author Karel Maesen, Geovise BVBA
 * creation-date: 8/16/13
 */
public class HibernateSpatialConfigurationSettings implements Serializable {

	/**
	 * The canonical class name of the Oracle ConnectionFinder implementation that will be used by the
	 * Oracle spatial dialects
	 */
	public static final String CONNECTION_FINDER = "hibernate.spatial.connection_finder";

	public static final String ORACLE_OGC_STRICT = "hibernate.spatial.oracle_ogc_strict";

	/**
	 * SRID to use for the DB2 Spatial Dialects.
	 */
	public static final String DB2_DEFAULT_SRID = "hibernate.spatial.db2.srid";

	private HibernateSpatialConfigurationSettings() {
		//prevent this object from being instantiated
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy