org.hibernate.spatial.HibernateSpatialConfigurationSettings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-spatial Show documentation
Show all versions of hibernate-spatial Show documentation
Integrate support for Spatial/GIS data into Hibernate O/RM
/*
* 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
}
}