Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.remoteclient / src / main / java / org / gvsig / remoteclient / wfs / request / WFSDescribeFeatureTypeRequest.java @ 40559

History | View | Annotate | Download (3.85 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.request;
25

    
26
import org.gvsig.remoteclient.utils.CapabilitiesTags;
27
import org.gvsig.remoteclient.wfs.WFSProtocolHandler;
28
import org.gvsig.remoteclient.wfs.WFSStatus;
29

    
30
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
31
 *
32
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
33
 *
34
 * This program is free software; you can redistribute it and/or
35
 * modify it under the terms of the GNU General Public License
36
 * as published by the Free Software Foundation; either version 2
37
 * of the License, or (at your option) any later version.
38
 *
39
 * This program is distributed in the hope that it will be useful,
40
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
41
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
42
 * GNU General Public License for more details.
43
 *
44
 * You should have received a copy of the GNU General Public License
45
 * along with this program; if not, write to the Free Software
46
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
47
 *
48
 * For more information, contact:
49
 *
50
 *  Generalitat Valenciana
51
 *   Conselleria d'Infraestructures i Transport
52
 *   Av. Blasco Ib??ez, 50
53
 *   46010 VALENCIA
54
 *   SPAIN
55
 *
56
 *      +34 963862235
57
 *   gvsig@gva.es
58
 *      www.gvsig.gva.es
59
 *
60
 *    or
61
 *
62
 *   IVER T.I. S.A
63
 *   Salamanca 50
64
 *   46005 Valencia
65
 *   Spain
66
 *
67
 *   +34 963163400
68
 *   dac@iver.es
69
 */
70
/* CVS MESSAGES:
71
 *
72
 * $Id$
73
 * $Log$
74
 *
75
 */
76
/**
77
 * The function of the DescribeFeatureType operation is to 
78
 * generate a schema description of feature types serviced 
79
 * by a WFS implementation. The schema descriptions define 
80
 * how a WFS implementation expects feature instances to 
81
 * be encoded on input (via Insert and Update requests) 
82
 * and how feature instances will be generated on output 
83
 * (in response to GetFeature and GetGmlObject requests). 
84
 * @see http://www.opengeospatial.org/standards/wfs
85
 * @author Jorge Piera Llodr? (jorge.piera@iver.es)
86
 */
87
public abstract class WFSDescribeFeatureTypeRequest extends WFSRequest{
88

    
89
        public WFSDescribeFeatureTypeRequest(WFSStatus status,
90
                        WFSProtocolHandler protocolHandler) {
91
                super(status, protocolHandler);
92
        }
93

    
94
        /*
95
         * (non-Javadoc)
96
         * @see org.gvsig.remoteClient.wfs.requests.WFSRequest#getHttpPostRequest(java.lang.String)
97
         */
98
        protected String getHttpPostRequest(String onlineResource) {
99
                // TODO Auto-generated method stub
100
                return null;
101
        }
102

    
103
        /*
104
         * (non-Javadoc)
105
         * @see org.gvsig.remoteClient.wfs.requests.WFSRequest#getOperationCode()
106
         */
107
        protected String getOperationName() {
108
                return CapabilitiesTags.WFS_DESCRIBEFEATURETYPE;
109
        }
110

    
111
        /*
112
         * (non-Javadoc)
113
         * @see org.gvsig.remoteClient.wfs.requests.WFSRequest#getSchemaLocation()
114
         */
115
        protected String getSchemaLocation() {
116
                return null;
117
        }
118

    
119
        /*
120
         * (non-Javadoc)
121
         * @see org.gvsig.remoteClient.wfs.requests.WFSRequest#getTempFilePrefix()
122
         */
123
        protected String getTempFilePrefix() {
124
                return "wfs_describeFeatureType.xml";
125
        }
126
}