Source Code Cross Referenced for GetCapabilitiesType.java in  » GIS » GeoServer » net » opengis » ows » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » GIS » GeoServer » net.opengis.ows 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /**
002:         * <copyright>
003:         * </copyright>
004:         *
005:         * $Id: GetCapabilitiesType.java 7522 2007-09-12 22:00:10Z saul.farber $
006:         */package net.opengis.ows;
007:
008:        import org.eclipse.emf.ecore.EObject;
009:
010:        /**
011:         * <!-- begin-user-doc -->
012:         * A representation of the model object '<em><b>Get Capabilities Type</b></em>'.
013:         * <!-- end-user-doc -->
014:         *
015:         * <!-- begin-model-doc -->
016:         * XML encoded GetCapabilities operation request. This operation allows clients to retrieve service metadata about a specific service instance. In this XML encoding, no "request" parameter is included, since the element name specifies the specific operation. This base type shall be extended by each specific OWS to include the additional required "service" attribute, with the correct value for that OWS.
017:         * <!-- end-model-doc -->
018:         *
019:         * <p>
020:         * The following features are supported:
021:         * <ul>
022:         *   <li>{@link net.opengis.ows.GetCapabilitiesType#getAcceptVersions <em>Accept Versions</em>}</li>
023:         *   <li>{@link net.opengis.ows.GetCapabilitiesType#getSections <em>Sections</em>}</li>
024:         *   <li>{@link net.opengis.ows.GetCapabilitiesType#getAcceptFormats <em>Accept Formats</em>}</li>
025:         *   <li>{@link net.opengis.ows.GetCapabilitiesType#getUpdateSequence <em>Update Sequence</em>}</li>
026:         *   <li>{@link net.opengis.ows.GetCapabilitiesType#getBaseUrl <em>Base Url</em>}</li>
027:         * </ul>
028:         * </p>
029:         *
030:         * @see net.opengis.ows.OwsPackage#getGetCapabilitiesType()
031:         * @model extendedMetaData="name='GetCapabilitiesType' kind='elementOnly'"
032:         * @generated
033:         */
034:        public interface GetCapabilitiesType extends EObject {
035:            /**
036:             * Returns the value of the '<em><b>Accept Versions</b></em>' containment reference.
037:             * <!-- begin-user-doc -->
038:             * <!-- end-user-doc -->
039:             * <!-- begin-model-doc -->
040:             * When omitted, server shall return latest supported version.
041:             * <!-- end-model-doc -->
042:             * @return the value of the '<em>Accept Versions</em>' containment reference.
043:             * @see #setAcceptVersions(AcceptVersionsType)
044:             * @see net.opengis.ows.OwsPackage#getGetCapabilitiesType_AcceptVersions()
045:             * @model containment="true"
046:             *        extendedMetaData="kind='element' name='AcceptVersions' namespace='##targetNamespace'"
047:             * @generated
048:             */
049:            AcceptVersionsType getAcceptVersions();
050:
051:            /**
052:             * Sets the value of the '{@link net.opengis.ows.GetCapabilitiesType#getAcceptVersions <em>Accept Versions</em>}' containment reference.
053:             * <!-- begin-user-doc -->
054:             * <!-- end-user-doc -->
055:             * @param value the new value of the '<em>Accept Versions</em>' containment reference.
056:             * @see #getAcceptVersions()
057:             * @generated
058:             */
059:            void setAcceptVersions(AcceptVersionsType value);
060:
061:            /**
062:             * Returns the value of the '<em><b>Sections</b></em>' containment reference.
063:             * <!-- begin-user-doc -->
064:             * <!-- end-user-doc -->
065:             * <!-- begin-model-doc -->
066:             * When omitted or not supported by server, server shall return complete service metadata (Capabilities) document.
067:             * <!-- end-model-doc -->
068:             * @return the value of the '<em>Sections</em>' containment reference.
069:             * @see #setSections(SectionsType)
070:             * @see net.opengis.ows.OwsPackage#getGetCapabilitiesType_Sections()
071:             * @model containment="true"
072:             *        extendedMetaData="kind='element' name='Sections' namespace='##targetNamespace'"
073:             * @generated
074:             */
075:            SectionsType getSections();
076:
077:            /**
078:             * Sets the value of the '{@link net.opengis.ows.GetCapabilitiesType#getSections <em>Sections</em>}' containment reference.
079:             * <!-- begin-user-doc -->
080:             * <!-- end-user-doc -->
081:             * @param value the new value of the '<em>Sections</em>' containment reference.
082:             * @see #getSections()
083:             * @generated
084:             */
085:            void setSections(SectionsType value);
086:
087:            /**
088:             * Returns the value of the '<em><b>Accept Formats</b></em>' containment reference.
089:             * <!-- begin-user-doc -->
090:             * <!-- end-user-doc -->
091:             * <!-- begin-model-doc -->
092:             * When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml".
093:             * <!-- end-model-doc -->
094:             * @return the value of the '<em>Accept Formats</em>' containment reference.
095:             * @see #setAcceptFormats(AcceptFormatsType)
096:             * @see net.opengis.ows.OwsPackage#getGetCapabilitiesType_AcceptFormats()
097:             * @model containment="true"
098:             *        extendedMetaData="kind='element' name='AcceptFormats' namespace='##targetNamespace'"
099:             * @generated
100:             */
101:            AcceptFormatsType getAcceptFormats();
102:
103:            /**
104:             * Sets the value of the '{@link net.opengis.ows.GetCapabilitiesType#getAcceptFormats <em>Accept Formats</em>}' containment reference.
105:             * <!-- begin-user-doc -->
106:             * <!-- end-user-doc -->
107:             * @param value the new value of the '<em>Accept Formats</em>' containment reference.
108:             * @see #getAcceptFormats()
109:             * @generated
110:             */
111:            void setAcceptFormats(AcceptFormatsType value);
112:
113:            /**
114:             * Returns the value of the '<em><b>Update Sequence</b></em>' attribute.
115:             * <!-- begin-user-doc -->
116:             * <!-- end-user-doc -->
117:             * <!-- begin-model-doc -->
118:             * When omitted or not supported by server, server shall return latest complete service metadata document.
119:             * <!-- end-model-doc -->
120:             * @return the value of the '<em>Update Sequence</em>' attribute.
121:             * @see #setUpdateSequence(String)
122:             * @see net.opengis.ows.OwsPackage#getGetCapabilitiesType_UpdateSequence()
123:             * @model unique="false" dataType="net.opengis.ows.UpdateSequenceType"
124:             *        extendedMetaData="kind='attribute' name='updateSequence'"
125:             * @generated
126:             */
127:            String getUpdateSequence();
128:
129:            /**
130:             * Sets the value of the '{@link net.opengis.ows.GetCapabilitiesType#getUpdateSequence <em>Update Sequence</em>}' attribute.
131:             * <!-- begin-user-doc -->
132:             * <!-- end-user-doc -->
133:             * @param value the new value of the '<em>Update Sequence</em>' attribute.
134:             * @see #getUpdateSequence()
135:             * @generated
136:             */
137:            void setUpdateSequence(String value);
138:
139:            /**
140:             * Returns the value of the '<em><b>Base Url</b></em>' attribute.
141:             * <!-- begin-user-doc -->
142:             * <p>
143:             * If the meaning of the '<em>Base Url</em>' attribute isn't clear,
144:             * there really should be more of a description here...
145:             * </p>
146:             * <!-- end-user-doc -->
147:             * @return the value of the '<em>Base Url</em>' attribute.
148:             * @see #setBaseUrl(String)
149:             * @see net.opengis.ows.OwsPackage#getGetCapabilitiesType_BaseUrl()
150:             * @model dataType="org.eclipse.emf.ecore.xml.type.String"
151:             * @generated
152:             */
153:            String getBaseUrl();
154:
155:            /**
156:             * Sets the value of the '{@link net.opengis.ows.GetCapabilitiesType#getBaseUrl <em>Base Url</em>}' attribute.
157:             * <!-- begin-user-doc -->
158:             * <!-- end-user-doc -->
159:             * @param value the new value of the '<em>Base Url</em>' attribute.
160:             * @see #getBaseUrl()
161:             * @generated
162:             */
163:            void setBaseUrl(String value);
164:
165:        } // GetCapabilitiesType
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.