Issue #1869 Switch location hibernate type to use hibernate spatial.

Former-commit-id: bbdd5cdc79 [formerly b434131d412788c478ec45114a86abe925a79d4c]
Former-commit-id: 7a31fbb386
This commit is contained in:
Ben Steffensmeier 2013-07-09 18:24:44 -05:00
parent 2cfe1506a4
commit f8596f1f5a

View file

@ -56,6 +56,8 @@ import com.vividsolutions.jts.geom.Point;
* Oct 26, 2007 391 jkorman Initial Coding.
* May 17, 2013 1869 bsteffen Remove DataURI column from sat plot
* types.
* Jul 09, 2013 1869 bsteffen Switch location hibernate type to use
* hibernate spatial.
*
* </pre>
*
@ -100,7 +102,7 @@ public class SurfaceObsLocation implements ISpatialObject, Cloneable {
private Boolean locationDefined = Boolean.FALSE;
@Column(name = "location", columnDefinition = "geometry")
@Type(type = "com.raytheon.edex.db.objects.hibernate.GeometryType")
@Type(type = "org.hibernatespatial.GeometryUserType")
@XmlJavaTypeAdapter(value = GeometryAdapter.class)
@DynamicSerializeElement
private Point location;