org.geoserver.catalog.impl.LayerGroupInfoImpl Maven / Gradle / Ivy
The newest version!
/* Copyright (c) 2001 - 2008 TOPP - www.openplans.org. All rights reserved.
* This code is licensed under the GPL 2.0 license, available at the root
* application directory.
*/
package org.geoserver.catalog.impl;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.geoserver.catalog.LayerGroupInfo;
import org.geoserver.catalog.LayerInfo;
import org.geoserver.catalog.StyleInfo;
import org.geotools.geometry.jts.ReferencedEnvelope;
public class LayerGroupInfoImpl implements LayerGroupInfo {
String id;
String name;
String path;
List layers = new ArrayList();
List styles = new ArrayList();
ReferencedEnvelope bounds;
Map metadata = new HashMap();
public LayerGroupInfoImpl() {
}
public String getId() {
return id;
}
public void setId( String id ) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
public List getLayers() {
return layers;
}
public List getStyles() {
return styles;
}
public ReferencedEnvelope getBounds() {
return bounds;
}
public void setBounds(ReferencedEnvelope bounds) {
this.bounds = bounds;
}
public Map getMetadata() {
return metadata;
}
}