Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.remoteclient / src / main / java / org / gvsig / remoteclient / wfs / edition / WFSTTags.java @ 40769

History | View | Annotate | Download (3.05 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
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 3
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
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
package org.gvsig.remoteclient.wfs.edition;
25
/**
26
 * @author Jorge Piera LLodr? (jorge.piera@iver.es)
27
 */
28
public class WFSTTags {
29
        public static final String XML_ROOT = "<?xml version=\"1.0\" ?>";
30
        public static final String XMLNS = "xmlns";
31
        public static final String XML_NAMESPACE_PREFIX = "xsi";
32
        public static final String XML_NAMESPACE = "http://www.w3.org/2001/XMLSchema-instance";
33
        public static final String XML_SCHEMALOCATION = "schemaLocation";
34
        public static final String WFS_NAMESPACE_PREFIX = "wfs";
35
        public static final String WFS_NAMESPACE = "http://www.opengis.net/wfs";
36
        public static final String OGC_NAMESPACE_PREFIX = "ogc";
37
        public static final String OGC_NAMESPACE = "http://www.opengis.net/ogc";
38
        public static final String GML_NAMESPACE_PREFIX = "gml";
39
        public static final String GML_NAMESPACE = "http://www.opengis.net/gml";
40
        
41
        public static final String WFST_LOCKID = "LockId";
42
        public static final String WFST_LOCK = "Lock";
43
        public static final String WFST_FEATURESLOCKED = "FeaturesLocked";
44
        public static final String WFST_FEATURESID = "FeatureId";        
45
        public static final String WFST_SERVICE = "service";
46
        public static final String WFST_TRANSACTIONRESULT = "TransactionResult";
47
        public static final String WFST_TRANSACTIONRESPONSE = "WFS_TransactionResponse";
48
        public static final String WFST_TRANSACTIONMESSAGE = "Message";
49
        public static final String WFST_STATUS = "Status";
50
        public static final String WFST_SUCCESS = "SUCCESS";
51
        public static final String WFST_FAILED = "FAILED";
52
        public static final String WFST_RELEASEACTION = "releaseAction";
53
        public static final String WFST_EXPIRYTIME = "expiry";        
54
        
55
        //Update operation
56
        public static final String WFST_PROPERTY = "Property";  
57
        public static final String WFST_NAME = "Name";  
58
        public static final String WFST_VALUE = "Value";  
59
        
60
        public static final String WFS_QUERY = "Query";
61
        public static final String WFS_FILTER = "Filter";
62
        public static final String WFS_RESULTTYPE = "resultType";
63
        public static final String WFS_HITS = "hits";
64
        public static final String WFS_NUMBER_OF_FEATURES = "numberOfFeatures";
65
        public static final String WFS_TIME_STAMP = "timeStamp";
66
}