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

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

    private String help = null;
    private Boolean success = Boolean.valueOf(true);
    private Error error = null;

    @JsonProperty("help")
    public void setHelp(final String help) {
        this.help = help;
    }

    @JsonProperty("help")
    public String getHelp() {
        return this.help;
    }

    @JsonProperty("success")
    public void setSuccess(final Boolean success) {
        this.success = success;
    }

    @JsonProperty("success")
    public Boolean isSuccess() {
        return this.success;
    }

    @JsonProperty("error")
    public void setError(final Error error) {
        this.error = error;
    }

    @JsonProperty("error")
    public Error getError() {
        return this.error;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy