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:ServiceType. * * <p> * <pre> * <code> * <complexType name="ServiceType"> * <annotation> * <documentation>A minimal, human readable rescription of the service. </documentation> * </annotation> * <complexContent> * <extension base="wcs:AbstractDescriptionType"> * <sequence> * <element maxOccurs="unbounded" minOccurs="0" ref="wcs:keywords"/> * <element minOccurs="0" name="responsibleParty" type="wcs:ResponsiblePartyType"/> * <element name="fees" type="gml:CodeListType"> * <annotation> * <documentation>A text string identifying any fees imposed by the service provider. The keyword NONE shall be used to mean no fees. </documentation> * </annotation> * </element> * <element maxOccurs="unbounded" name="accessConstraints" type="gml:CodeListType"> * <annotation> * <documentation>A text string identifying any access constraints imposed by the service provider. The keyword NONE shall be used to mean no access constraints are imposed. </documentation> * </annotation> * </element> * </sequence> * <attribute fixed="1.0.0" name="version" type="string" use="optional"/> * <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> * </extension> * </complexContent> * </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/ServiceTypeBinding.java $ */ public class ServiceTypeBinding extends AbstractComplexBinding { /** * @generated */ public QName getTarget() { return WCS.ServiceType; } /** * <!-- 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); } }