All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.anwiba.spatial.ckan.json.schema.v1_0.SpatialReference Maven / Gradle / Ivy

There is a newer version: 1.2.50
Show newest version
//Copyright (c) 2017 by Andreas W. Bartels
package net.anwiba.spatial.ckan.json.schema.v1_0;

import com.fasterxml.jackson.annotation.JsonProperty;

public class SpatialReference {

    private String ags = null;
    private String nuts = null;
    private String uri = null;
    private String text = null;

    @JsonProperty("ags")
    public void setAgs(final String ags) {
        this.ags = ags;
    }

    @JsonProperty("ags")
    public String getAgs() {
        return this.ags;
    }

    @JsonProperty("nuts")
    public void setNuts(final String nuts) {
        this.nuts = nuts;
    }

    @JsonProperty("nuts")
    public String getNuts() {
        return this.nuts;
    }

    @JsonProperty("uri")
    public void setUri(final String uri) {
        this.uri = uri;
    }

    @JsonProperty("uri")
    public String getUri() {
        return this.uri;
    }

    @JsonProperty("text")
    public void setText(final String text) {
        this.text = text;
    }

    @JsonProperty("text")
    public String getText() {
        return this.text;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy