nl.pdok.workspacebuilder.model.Style 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.workspacebuilder.model;
/**
* Created with IntelliJ IDEA.
* User: nijhur
* Date: 29-4-14
* Time: 11:32
* To change this template use File | Settings | File Templates.
*/
public class Style {
private String name;
private String workspace;
boolean existing;
public Style(String name){
setName(name);
setExisting(false);
}
@SuppressWarnings("unused")
private Style(String name, String workspace){
setName(name);
setWorkspace(workspace);
setExisting(false);
}
@SuppressWarnings("unused")
private Style(String name, String workspace, Boolean existing){
setName(name);
setWorkspace(workspace);
setExisting(existing);
}
@SuppressWarnings("unused")
private Style(String name, Boolean existing){
setName(name);
setExisting(existing);
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getWorkspace() {
return workspace;
}
public void setWorkspace(String workspace) {
this.workspace = workspace;
}
public boolean isExisting() {
return existing;
}
public void setExisting(boolean existing) {
this.existing = existing;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy