/** * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * * @author Gabriel Roldan (OpenGeo) 2010 * */ package org.geowebcache.georss; import java.net.URI; import com.vividsolutions.jts.geom.Geometry; class Entry { private String title; private String subtitle; private URI link; private String id; private String updated; private Geometry where; private String SRS; public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getSubtitle() { return subtitle; } public void setSubtitle(String subtitle) { this.subtitle = subtitle; } public URI getLink() { return link; } public void setLink(URI link) { this.link = link; } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getUpdated() { return updated; } public void setUpdated(String upd) { this.updated = upd; } public Geometry getWhere() { return where; } public void setWhere(Geometry where) { this.where = where; } public String getSRS() { return SRS; } public void setSRS(final String srsName) { SRS = srsName; } }