/* (c) 2014 Open Source Geospatial Foundation - all rights reserved * (c) 2001 - 2013 OpenPlans * This code is licensed under the GPL 2.0 license, available at the root * application directory. */ package org.geoserver.wfs.xml.v1_0_0; import javax.xml.namespace.QName; import net.opengis.wfs.WfsFactory; import org.geotools.xml.AbstractComplexEMFBinding; /** * Binding object for the element http://www.opengis.net/wfs:GetCapabilities. * * <p> * <pre> * <code> * <xsd:element name="GetCapabilities" type="wfs:GetCapabilitiesType"> * <xsd:annotation> <xsd:documentation> The * GetCapapbilities element is used to request that a Web * Feature Service generate an XML document * describing the organization providing the * service, the WFS operations that the service * supports, a list of feature types that the service can * operate on and list of filtering capabilities * that the service support. Such an XML document * is called a capabilities document. * </xsd:documentation> </xsd:annotation> </xsd:element> * * </code> * </pre> * @generated */ public class GetCapabilitiesBinding extends AbstractComplexEMFBinding { public GetCapabilitiesBinding(WfsFactory wfsfactory) { super( wfsfactory ); } /** * @generated */ public QName getTarget() { return WFS.GETCAPABILITIES; } }