Statistics
| Revision:

gvsig-raster / org.gvsig.raster.wms / trunk / org.gvsig.raster.wms / org.gvsig.raster.wms.app.wmsclient / src / main / java / org / gvsig / raster / wms / app / wmsclient / wmc / WebMapContextTags.java @ 2484

History | View | Annotate | Download (4.69 KB)

1
/* gvSIG. Geographic Information System of the Valencian Government
2
*
3
* Copyright (C) 2007-2008 Infrastructures and Transports Department
4
* of the Valencian Government (CIT)
5
* 
6
* This program is free software; you can redistribute it and/or
7
* modify it under the terms of the GNU General Public License
8
* as published by the Free Software Foundation; either version 2
9
* of the License, or (at your option) any later version.
10
* 
11
* This program 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
14
* GNU General Public License for more details.
15
* 
16
* You should have received a copy of the GNU General Public License
17
* along with this program; if not, write to the Free Software
18
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
19
* MA  02110-1301, USA.
20
* 
21
*/
22
 
23
package org.gvsig.raster.wms.app.wmsclient.wmc;
24

    
25
/**
26
 * WebMapContextTags is a class with only static public fields containing the
27
 * String constants of the WebMapContext XML document.
28
 * @author jaume dominguez faus - jaume.dominguez@iver.es
29
 *
30
 */
31
public class WebMapContextTags {
32
        private WebMapContextTags() {};
33
        
34
        public static final String VIEW_CONTEXT = "ViewContext";
35
        public static final String VIEW_CONTEXT_0_1_4 = "WMS_Viewer_Context";
36
        public static final String VERSION = "version";
37
        public static final String ID = "id";
38
        public static final String XMLNS = "xmlns";
39
        public static final String XMLNS_XLINK = "xmlns:xlink";
40
        public static final String XMLNS_XLINK_VALUE = "http://www.w3.org/1999/xlink";
41
        public static final String XMLNS_VALUE = "http://www.opengis.net/context"; // "http://www.opengeospatial.net/context"
42
        public static final String XMLNS_XSI = "xmlns:xsi"; 
43
        public static final String XMLNS_XSI_VALUE = "http://www.w3.org/2001/XMLSchema-instance";
44
        public static final String XSI_SCHEMA_LOCATION = "xsi:schemaLocation";
45
        public static final String XSI_SCHEMA_LOCATION_VALUE = "http://www.opengeospatial.net/context context.xsd";
46
        public static final String GENERAL = "General";
47
        public static final String WIDTH = "width";
48
        public static final String HEIGHT = "height";
49
        public static final String WINDOW = "Window";
50
        public static final String SRS = "SRS";
51
        public static final String X_MIN = "minx";
52
        public static final String Y_MIN = "miny";
53
        public static final String X_MAX = "maxx";
54
        public static final String Y_MAX = "maxy";
55
        public static final String BOUNDING_BOX = "BoundingBox";
56
        public static final String TITLE = "Title";
57
        public static final String LAYER_LIST = "LayerList";
58
        public static final String LAYER = "Layer";
59
        public static final String QUERYABLE = "queryable";
60
        public static final String HIDDEN = "hidden";
61
        public static final String SERVICE = "service";
62
        public static final String WMS = "WMS";
63
        public static final String SERVER_TITLE = "title";
64
        public static final String SERVER = "Server";
65
        public static final String XLINK_TYPE = "xlink:type";
66
        public static final String XLINK_HREF = "xlink:href";
67
        public static final String ONLINE_RESOURCE = "OnlineResource";
68
        public static final String NAME = "Name";
69
        public static final String ABSTRACT = "Abstract";
70
        public static final String FORMAT_LIST = "FormatList";
71
        public static final String CURRENT = "current";
72
        public static final String FORMAT = "Format";
73
        public static final String STYLE_LIST = "StyleList";
74
        public static final String STYLE = "Style";
75
        public static final String KEYWORD_LIST = "KeywordList";
76
        public static final String KEYWORD = "Keyword";
77
        public static final String LOGO_URL = "LogoURL";
78
        public static final String DESCRIPTION_URL = "DescriptionURL";
79
        public static final String CONTACT_INFORMATION = "ContactInformation";
80
        public static final String CONTACT_PERSON_PRIMARY = "ContactPersonPrimary";
81
        public static final String CONTACT_PERSON = "ContactPerson";
82
        public static final String CONTACT_ORGANIZATION = "ContactOrganization";
83
        public static final String CONTACT_POSITION = "ContactPosition";
84
        public static final String CONTACT_ADDRESS = "ContactAddress";
85
        public static final String ADDRESS_TYPE = "AddressType";
86
        public static final String ADDRESS = "Address";
87
        public static final String CITY = "City";
88
        public static final String STATE_OR_PROVINCE = "StateOrProvince";
89
        public static final String POSTCODE = "PostCode";
90
        public static final String COUNTRY = "Country";
91
        public static final String CONTACT_VOICE_TELEPHONE = "ContactVoiceTelephone";
92
        public static final String CONTACT_FACSIMILE_TELEPHONE = "ContactFacsimileTelephone";
93
        public static final String CONTACT_ELECTRONIC_MAIL_ADDRESS = "ContactElectronicMailAddress";
94
        public static final String DIMENSION_LIST = "DimensionList";
95
        public static final String LEGEND_URL = "LegendURL";
96
        
97
}