package org.geotools.wcs.bindings; import javax.xml.namespace.QName; import net.opengis.wcs10.CapabilitiesSectionType; import net.opengis.wcs10.Wcs10Factory; import org.geotools.wcs.WCS; import org.geotools.xml.AbstractSimpleBinding; import org.geotools.xml.InstanceComponent; /** * Binding object for the type * http://www.opengis.net/wcs:CapabilitiesSectionType. * * <p> * * <pre> * <code> * <simpleType name="CapabilitiesSectionType"> * <annotation> * <documentation>Identification of desired part of full Capabilities XML document to be returned. </documentation> * </annotation> * <restriction base="string"> * <enumeration value="/"> * <annotation> * <documentation>TBD. </documentation> * </annotation> * </enumeration> * <enumeration value="/WCS_Capabilities/Service"> * <annotation> * <documentation>TBD. </documentation> * </annotation> * </enumeration> * <enumeration value="/WCS_Capabilities/Capability"> * <annotation> * <documentation>TBD. </documentation> * </annotation> * </enumeration> * <enumeration value="/WCS_Capabilities/ContentMetadata"> * <annotation> * <documentation>TBD. </documentation> * </annotation> * </enumeration> * </restriction> * </simpleType> * * </code> * </pre> * * </p> * * @generated * * @source $URL: http://svn.osgeo.org/geotools/trunk/modules/extension/xsd/xsd-wcs/src/main/java/org/geotools/wcs/bindings/CapabilitiesSectionTypeBinding.java $ */ public class CapabilitiesSectionTypeBinding extends AbstractSimpleBinding { /** * @generated */ public QName getTarget() { return WCS.CapabilitiesSectionType; } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated modifiable */ public Class getType() { return CapabilitiesSectionType.class; } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated modifiable */ public Object parse(InstanceComponent instance, Object value) throws Exception { return CapabilitiesSectionType.get((String)value); } }