001: /*
002: * uDig - User Friendly Desktop Internet GIS client
003: * http://udig.refractions.net
004: * (C) 2004, Refractions Research Inc.
005: *
006: * This library is free software; you can redistribute it and/or
007: * modify it under the terms of the GNU Lesser General Public
008: * License as published by the Free Software Foundation;
009: * version 2.1 of the License.
010: *
011: * This library is distributed in the hope that it will be useful,
012: * but WITHOUT ANY WARRANTY; without even the implied warranty of
013: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
014: * Lesser General Public License for more details.
015: *
016: */
017: package net.refractions.udig.catalog.google;
018:
019: import java.net.URL;
020:
021: public class OGCLayer {
022: protected java.lang.String name;
023: protected java.lang.String title;
024: protected String description;
025: protected URL id;
026: protected URL onlineresource;
027: protected java.lang.String servertype;
028: protected java.lang.String serverversion;
029:
030: public OGCLayer() {
031: // no op
032: }
033:
034: public OGCLayer(java.lang.String name, java.lang.String title,
035: java.lang.String description, URL onlineresource,
036: java.lang.String servertype,
037: java.lang.String serverversion, URL id) {
038: this .name = name;
039: this .title = title;
040: this .description = description;
041: this .onlineresource = onlineresource;
042: this .servertype = servertype;
043: this .serverversion = serverversion;
044: this .id = id;
045: }
046:
047: public java.lang.String getName() {
048: return name;
049: }
050:
051: public void setName(java.lang.String name) {
052: this .name = name;
053: }
054:
055: public java.lang.String getTitle() {
056: return title;
057: }
058:
059: public void setTitle(java.lang.String title) {
060: this .title = title;
061: }
062:
063: public java.lang.String getDescription() {
064: return description;
065: }
066:
067: public void setDescription(java.lang.String description) {
068: this .description = description;
069: }
070:
071: public URL getOnlineresource() {
072: return onlineresource;
073: }
074:
075: public void setOnlineresource(URL onlineresource) {
076: this .onlineresource = onlineresource;
077: }
078:
079: public java.lang.String getServertype() {
080: return servertype;
081: }
082:
083: public void setServertype(java.lang.String servertype) {
084: this .servertype = servertype;
085: }
086:
087: public java.lang.String getServerversion() {
088: return serverversion;
089: }
090:
091: public void setServerversion(java.lang.String serverversion) {
092: this .serverversion = serverversion;
093: }
094:
095: public URL getId() {
096: return id;
097: }
098:
099: public void setId(URL id) {
100: this.id = id;
101: }
102:
103: }
|