01: /* Copyright (c) 2001 - 2007 TOPP - www.openplans.org. All rights reserved.
02: * This code is licensed under the GPL 2.0 license, availible at the root
03: * application directory.
04: */
05: package org.geoserver.wfs.xml.v1_0_0;
06:
07: import net.opengis.wfs.WfsFactory;
08: import org.geotools.xml.AbstractComplexBinding;
09: import org.geotools.xml.ElementInstance;
10: import org.geotools.xml.Node;
11: import javax.xml.namespace.QName;
12:
13: /**
14: * Binding object for the element http://www.opengis.net/wfs:GetCapabilities.
15: *
16: * <p>
17: * <pre>
18: * <code>
19: * <xsd:element name="GetCapabilities" type="wfs:GetCapabilitiesType">
20: * <xsd:annotation> <xsd:documentation> The
21: * GetCapapbilities element is used to request that a Web
22: * Feature Service generate an XML document
23: * describing the organization providing the
24: * service, the WFS operations that the service
25: * supports, a list of feature types that the service can
26: * operate on and list of filtering capabilities
27: * that the service support. Such an XML document
28: * is called a capabilities document.
29: * </xsd:documentation> </xsd:annotation> </xsd:element>
30: *
31: * </code>
32: * </pre>
33: * </p>
34: *
35: * @generated
36: */
37: public class GetCapabilitiesBinding extends AbstractComplexBinding {
38: WfsFactory wfsfactory;
39:
40: public GetCapabilitiesBinding(WfsFactory wfsfactory) {
41: this .wfsfactory = wfsfactory;
42: }
43:
44: /**
45: * @generated
46: */
47: public QName getTarget() {
48: return WFS.GETCAPABILITIES;
49: }
50:
51: /**
52: * <!-- begin-user-doc -->
53: * <!-- end-user-doc -->
54: *
55: * @generated modifiable
56: */
57: public Class getType() {
58: return null;
59: }
60:
61: /**
62: * <!-- begin-user-doc -->
63: * <!-- end-user-doc -->
64: *
65: * @generated modifiable
66: */
67: public Object parse(ElementInstance instance, Node node,
68: Object value) throws Exception {
69: //TODO: implement
70: return null;
71: }
72: }
|