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

nl.pdok.catalogus.model.Service Maven / Gradle / Ivy

The newest version!
package nl.pdok.catalogus.model;

import java.util.List;

import org.codehaus.jackson.annotate.JsonIgnoreProperties;

/**
 * Created with IntelliJ IDEA.
 * User: nijhur
 * Date: 4-11-14
 * Time: 12:04
 * To change this template use File | Settings | File Templates.
 */
@JsonIgnoreProperties(ignoreUnknown=true)
public class Service {

    private String type;
    private String title;
    private String description;
    private String metadata_id;
    private List keywords;
    private List inspire_keywords;
    private List accessconstraints;
    private String fees;
    private List srs;

    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public String getMetadata_id() {
        return metadata_id;
    }

    public void setMetadata_id(String metadata_id) {
        this.metadata_id = metadata_id;
    }

    public List getKeywords() {
        return keywords;
    }

    public List getAccessconstraints() {
        return accessconstraints;
    }

    public void setAccessconstraints(List accessconstraints) {
        this.accessconstraints = accessconstraints;
    }

    public String getFees() {
        return fees;
    }

    public void setFees(String fees) {
        this.fees = fees;
    }

    public void setKeywords(List keywords) {

        this.keywords = keywords;
    }

    public List getInspire_keywords() {
        return inspire_keywords;
    }

    public void setInspire_keywords(List inspire_keywords) {
        this.inspire_keywords = inspire_keywords;
    }

	public List getSrs() {
		return srs;
	}

    public void setSrs(List srs) {
        this.srs = srs;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy