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:
parent
2cfe1506a4
commit
f8596f1f5a
1 changed files with 3 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue