package org.geotools.wcs.bindings; import org.geotools.wcs.WCS; import org.geotools.xml.*; import javax.xml.namespace.QName; /** * Binding object for the type http://www.opengis.net/wcs:WCSCapabilityType. * * <p> * <pre> * <code> * <complexType name="WCSCapabilityType"> * <annotation> * <documentation>XML encoded WCS GetCapabilities operation response. The Capabilities document provides clients with service metadata about a specific service instance, including metadata about the coverages served. </documentation> * </annotation> * <sequence> * <element name="Request"> * <complexType name="WCSCapabilityType_Request"> * <sequence> * <element name="GetCapabilities"> * <complexType> * <sequence> * <element maxOccurs="unbounded" * name="DCPType" type="wcs:DCPTypeType"/> * </sequence> * </complexType> * </element> * <element name="DescribeCoverage"> * <complexType> * <sequence> * <element maxOccurs="unbounded" * name="DCPType" type="wcs:DCPTypeType"/> * </sequence> * </complexType> * </element> * <element name="GetCoverage"> * <complexType> * <sequence> * <element maxOccurs="unbounded" * name="DCPType" type="wcs:DCPTypeType"/> * </sequence> * </complexType> * </element> * </sequence> * </complexType> * </element> * <element name="Exception"> * <complexType name="WCSCapabilityType_Exception"> * <sequence> * <element maxOccurs="unbounded" name="Format" type="string"/> * </sequence> * </complexType> * </element> * <element minOccurs="0" name="VendorSpecificCapabilities"> * <complexType name="WCSCapabilityType_VendorSpecificCapabilities"> * <sequence> * <any/> * </sequence> * </complexType> * </element> * </sequence> * <attribute fixed="1.0.0" name="version" type="string" use="optional"/> * <attribute name="updateSequence" type="string" use="optional"> * <annotation> * <documentation>Service metadata document version, having values that are "increased" whenever any change is made in service metadata document. Values are selected by each server, and are always opaque to clients. When not supported by server, server shall not return this attribute. </documentation> * </annotation> * </attribute> * </complexType> * * </code> * </pre> * </p> * * @generated * * @source $URL: http://svn.osgeo.org/geotools/trunk/modules/extension/xsd/xsd-wcs/src/main/java/org/geotools/wcs/bindings/WCSCapabilityTypeBinding.java $ */ public class WCSCapabilityTypeBinding extends AbstractComplexBinding { /** * @generated */ public QName getTarget() { return WCS.WCSCapabilityType; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated modifiable */ public Class getType() { return null; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated modifiable */ public Object parse(ElementInstance instance, Node node, Object value) throws Exception { //TODO: implement and remove call to super return super.parse(instance,node,value); } }