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

nl.pdok.catalogus.model.ServiceInfo 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:03
 * To change this template use File | Settings | File Templates.
 */
@JsonIgnoreProperties(ignoreUnknown=true)
public class ServiceInfo {
    private String name;
    private boolean inspire;
    private String authority_name;
    private String authority_url;
    private List services;
    private List layers;
    private List grouplayers;
    private List relativeHeight;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public List getServices() {
        return services;
    }

    public void setServices(List services) {
        this.services = services;
    }

    public boolean isInspire() {
        return inspire;
    }

    public void setInspire(boolean inspire) {
        this.inspire = inspire;
    }

    public String getAuthority_name() {
        return authority_name;
    }

    public void setAuthority_name(String authority_name) {
        this.authority_name = authority_name;
    }

    public String getAuthority_url() {
        return authority_url;
    }

    public void setAuthority_url(String authority_url) {
        this.authority_url = authority_url;
    }

    public List getLayers() {
        return layers;
    }

    public void setLayers(List layers) {
        this.layers = layers;
    }
    
    public List getRelative_height() {
    	return relativeHeight;
    }
    
    public void setRelative_height(List relativeHeigt) {
    	this.relativeHeight = relativeHeigt;
    }

    public List getGrouplayers() {
        return grouplayers;
    }

    public void setGrouplayers(List grouplayers) {
        this.grouplayers = grouplayers;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy