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

net.anwiba.spatial.ckan.json.schema.v1_0.PackageSearchResult 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 PackageSearchResult
    extends Result
{

    private Dataset[] results = null;

    @JsonProperty("results")
    public void setResults(final Dataset[] results) {
        this.results = results;
    }

    @JsonProperty("results")
    public Dataset[] getResults() {
        return this.results;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy