net.anwiba.spatial.geo.json.v01_0.Geometry Maven / Gradle / Ivy
//Copyright (c) 2012 by Andreas W. Bartels
package net.anwiba.spatial.geo.json.v01_0;
import com.fasterxml.jackson.annotation.JsonIgnore;
public class Geometry
extends GeoJsonObject
{
private final String type = "Geometry";
@JsonIgnore
public void setType(final String type) {
}
@JsonIgnore
public String getType() {
return this.type;
}
}