net.anwiba.spatial.geo.json.v01_0.Crs Maven / Gradle / Ivy
//Copyright (c) 2012 by Andreas W. Bartels
package net.anwiba.spatial.geo.json.v01_0;
import com.fasterxml.jackson.annotation.JsonProperty;
public class Crs {
private String type = null;
private Properties properties = null;
@JsonProperty("type")
public void setType(final String type) {
this.type = type;
}
@JsonProperty("type")
public String getType() {
return this.type;
}
@JsonProperty("properties")
public void setProperties(final Properties properties) {
this.properties = properties;
}
@JsonProperty("properties")
public Properties getProperties() {
return this.properties;
}
}