nl.pdok.catalogus.model.GroupLayer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geoserver-workspace-builder Show documentation
Show all versions of geoserver-workspace-builder Show documentation
PDOK Geoserver Workspace Builder
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: 13:25
* To change this template use File | Settings | File Templates.
*/
@JsonIgnoreProperties(ignoreUnknown=true)
public class GroupLayer {
private String name;
private String title;
private String description;
private String type;
private List layers;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
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 List getLayers() {
return layers;
}
public void setLayers(List layers) {
this.layers = layers;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy