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:WCS_CapabilitiesType. * * <p> * <pre> * <code> * <complexType name="WCS_CapabilitiesType"> * <annotation> * <documentation>Metadata for a WCS server, also known as Capabilities document. Reply from a WCS that performed the GetCapabilities operation. </documentation> * </annotation> * <sequence> * <element ref="wcs:Service"/> * <element ref="wcs:Capability"/> * <element ref="wcs:ContentMetadata"/> * </sequence> * <attribute fixed="1.0.0" name="version" type="string" use="required"/> * <attribute name="updateSequence" type="string" use="optional"> * <annotation> * <documentation>Service metadata (Capabilities) 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 supported by server, server shall 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/WCS_CapabilitiesTypeBinding.java $ */ public class WCS_CapabilitiesTypeBinding extends AbstractComplexBinding { /** * @generated */ public QName getTarget() { return WCS.WCS_CapabilitiesType; } /** * <!-- 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); } }