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

net.anwiba.spatial.ckan.json.schema.v1_0.RoledDate 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;
import net.anwiba.spatial.ckan.json.types.DateString;

public class RoledDate {

    private String role = null;
    private DateString date = null;

    @JsonProperty("role")
    public void setRole(final String role) {
        this.role = role;
    }

    @JsonProperty("role")
    public String getRole() {
        return this.role;
    }

    @JsonProperty("date")
    public void setDate(final DateString date) {
        this.date = date;
    }

    @JsonProperty("date")
    public DateString getDate() {
        return this.date;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy