Statistics
| Revision:

svn-gvsig-desktop / tags / v1_1_Build_1009 / extensions / extWMS / src / com / iver / cit / gvsig / wmc / WebMapContextTags.java @ 12649

History | View | Annotate | Download (5.75 KB)

1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2005 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 *
19
 * For more information, contact:
20
 *
21
 *  Generalitat Valenciana
22
 *   Conselleria d'Infraestructures i Transport
23
 *   Av. Blasco Ib??ez, 50
24
 *   46010 VALENCIA
25
 *   SPAIN
26
 *
27
 *      +34 963862235
28
 *   gvsig@gva.es
29
 *      www.gvsig.gva.es
30
 *
31
 *    or
32
 *
33
 *   IVER T.I. S.A
34
 *   Salamanca 50
35
 *   46005 Valencia
36
 *   Spain
37
 *
38
 *   +34 963163400
39
 *   dac@iver.es
40
 */
41

    
42
/* CVS MESSAGES:
43
*
44
* $Id: WebMapContextTags.java 12649 2007-07-17 12:20:01Z  $
45
* $Log$
46
* Revision 1.3  2006-05-24 16:36:28  jaume
47
* *** empty log message ***
48
*
49
* Revision 1.2  2006/05/12 07:47:39  jaume
50
* removed unnecessary imports
51
*
52
* Revision 1.1  2006/05/03 07:51:21  jaume
53
* *** empty log message ***
54
*
55
* Revision 1.5  2006/05/02 15:58:20  jaume
56
* Few better javadoc
57
*
58
* Revision 1.4  2006/05/02 15:57:44  jaume
59
* Few better javadoc
60
*
61
* Revision 1.3  2006/04/21 10:27:32  jaume
62
* exporting now supported
63
*
64
* Revision 1.2  2006/04/19 16:34:29  jaume
65
* *** empty log message ***
66
*
67
* Revision 1.1  2006/04/19 07:57:29  jaume
68
* *** empty log message ***
69
*
70
* Revision 1.2  2006/04/12 17:10:53  jaume
71
* *** empty log message ***
72
*
73
* Revision 1.1  2006/04/04 14:22:22  jaume
74
* Now exports MapContext (not yet tested)
75
*
76
*
77
*/
78
package com.iver.cit.gvsig.wmc;
79

    
80
/**
81
 * WebMapContextTags is a class with only static public fields containing the
82
 * String constants of the WebMapContext XML document.
83
 * @author jaume dominguez faus - jaume.dominguez@iver.es
84
 *
85
 */
86
public class WebMapContextTags {
87
        private WebMapContextTags() {};
88
        
89
        public static final String VIEW_CONTEXT = "ViewContext";
90
        public static final String VIEW_CONTEXT_0_1_4 = "WMS_Viewer_Context";
91
        public static final String VERSION = "version";
92
        public static final String ID = "id";
93
        public static final String XMLNS = "xmlns";
94
        public static final String XMLNS_XLINK = "xmlns:xlink";
95
        public static final String XMLNS_XLINK_VALUE = "http://www.w3.org/1999/xlink";
96
        public static final String XMLNS_VALUE = "http://www.opengis.net/context"; // "http://www.opengeospatial.net/context"
97
        public static final String XMLNS_XSI = "xmlns:xsi"; 
98
        public static final String XMLNS_XSI_VALUE = "http://www.w3.org/2001/XMLSchema-instance";
99
        public static final String XSI_SCHEMA_LOCATION = "xsi:schemaLocation";
100
        public static final String XSI_SCHEMA_LOCATION_VALUE = "http://www.opengeospatial.net/context context.xsd";
101
        public static final String GENERAL = "General";
102
        public static final String WIDTH = "width";
103
        public static final String HEIGHT = "height";
104
        public static final String WINDOW = "Window";
105
        public static final String SRS = "SRS";
106
        public static final String X_MIN = "minx";
107
        public static final String Y_MIN = "miny";
108
        public static final String X_MAX = "maxx";
109
        public static final String Y_MAX = "maxy";
110
        public static final String BOUNDING_BOX = "BoundingBox";
111
        public static final String TITLE = "Title";
112
        public static final String LAYER_LIST = "LayerList";
113
        public static final String LAYER = "Layer";
114
        public static final String QUERYABLE = "queryable";
115
        public static final String HIDDEN = "hidden";
116
        public static final String SERVICE = "service";
117
        public static final String WMS = "WMS";
118
        public static final String SERVER_TITLE = "title";
119
        public static final String SERVER = "Server";
120
        public static final String XLINK_TYPE = "xlink:type";
121
        public static final String XLINK_HREF = "xlink:href";
122
        public static final String ONLINE_RESOURCE = "OnlineResource";
123
        public static final String NAME = "Name";
124
        public static final String ABSTRACT = "Abstract";
125
        public static final String FORMAT_LIST = "FormatList";
126
        public static final String CURRENT = "current";
127
        public static final String FORMAT = "Format";
128
        public static final String STYLE_LIST = "StyleList";
129
        public static final String STYLE = "Style";
130
        public static final String KEYWORD_LIST = "KeywordList";
131
        public static final String KEYWORD = "Keyword";
132
        public static final String LOGO_URL = "LogoURL";
133
        public static final String DESCRIPTION_URL = "DescriptionURL";
134
        public static final String CONTACT_INFORMATION = "ContactInformation";
135
        public static final String CONTACT_PERSON_PRIMARY = "ContactPersonPrimary";
136
        public static final String CONTACT_PERSON = "ContactPerson";
137
        public static final String CONTACT_ORGANIZATION = "ContactOrganization";
138
        public static final String CONTACT_POSITION = "ContactPosition";
139
        public static final String CONTACT_ADDRESS = "ContactAddress";
140
        public static final String ADDRESS_TYPE = "AddressType";
141
        public static final String ADDRESS = "Address";
142
        public static final String CITY = "City";
143
        public static final String STATE_OR_PROVINCE = "StateOrProvince";
144
        public static final String POSTCODE = "PostCode";
145
        public static final String COUNTRY = "Country";
146
        public static final String CONTACT_VOICE_TELEPHONE = "ContactVoiceTelephone";
147
        public static final String CONTACT_FACSIMILE_TELEPHONE = "ContactFacsimileTelephone";
148
        public static final String CONTACT_ELECTRONIC_MAIL_ADDRESS = "ContactElectronicMailAddress";
149
        public static final String DIMENSION_LIST = "DimensionList";
150
        public static final String LEGEND_URL = "LegendURL";
151
        
152
}