nl.pdok.catalogus.model.GroupLayerLayer 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 org.apache.commons.lang.StringUtils;
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 GroupLayerLayer {
private String layername;
private String style;
public String getLayername() {
return StringUtils.isNotEmpty(layername) ? StringUtils.replaceChars(layername, '$', '_') : layername;
}
public void setLayername(String layername) {
this.layername = layername;
}
public String getStyle() {
return style;
}
public void setStyle(String style) {
this.style = style;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy