01: /*
02: * GeoTools - OpenSource mapping toolkit
03: * http://geotools.org
04: * (C) 2003-2006, GeoTools Project Managment Committee (PMC)
05: *
06: * This library is free software; you can redistribute it and/or
07: * modify it under the terms of the GNU Lesser General Public
08: * License as published by the Free Software Foundation;
09: * version 2.1 of the License.
10: *
11: * This library is distributed in the hope that it will be useful,
12: * but WITHOUT ANY WARRANTY; without even the implied warranty of
13: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14: * Lesser General Public License for more details.
15: */
16: package org.geotools.styling;
17:
18: /**
19: * A RemoteOWS gives a reference to a remote WFS/WCS/other-OWS server.
20: *
21: * <p>
22: * The details of this object are taken from the <a
23: * href="https://portal.opengeospatial.org/files/?artifact_id=1188"> OGC
24: * Styled-Layer Descriptor Report (OGC 02-070) version 1.0.0.</a>:
25: * <pre><code>
26: * <xsd:element name="RemoteOWS">
27: * <xsd:annotation>
28: * <xsd:documentation>
29: * A RemoteOWS gives a reference to a remote WFS/WCS/other-OWS server.
30: * </xsd:documentation>
31: * </xsd:annotation>
32: * <xsd:complexType>
33: * <xsd:sequence>
34: * <xsd:element ref="sld:Service"/>
35: * <xsd:element ref="sld:OnlineResource"/>
36: * </xsd:sequence>
37: * </xsd:complexType>
38: * </xsd:element>
39: * </code></pre>
40: * </p>
41: *
42: * <p></p>
43: *
44: * @author James Macgill
45: * @source $URL: http://svn.geotools.org/geotools/tags/2.4.1/modules/library/api/src/main/java/org/geotools/styling/RemoteOWS.java $
46: */
47: public interface RemoteOWS {
48: String getService();
49:
50: void setService(String service);
51:
52: String getOnlineResource();
53:
54: void setOnlineResource(String onlineResource);
55: }
|