/* (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_1_0; import javax.xml.namespace.QName; import net.opengis.wfs.WfsFactory; import org.geotools.xml.AbstractComplexBinding; import org.geotools.xml.ElementInstance; import org.geotools.xml.Node; /** * Binding object for the type http://www.opengis.net/wfs:MetadataURLType. * * <p> * <pre> * <code> * <xsd:complexType name="MetadataURLType"> * <xsd:annotation> * <xsd:documentation> * A Web Feature Server MAY use zero or more MetadataURL * elements to offer detailed, standardized metadata about * the data underneath a particular feature type. The type * attribute indicates the standard to which the metadata * complies; the format attribute indicates how the metadata is * structured. Two types are defined at present: * 'TC211' or 'ISO19115' = ISO TC211 19115; * 'FGDC' = FGDC CSDGM. * 'ISO19139' = ISO 19139 * </xsd:documentation> * </xsd:annotation> * <xsd:simpleContent> * <xsd:extension base="xsd:string"> * <xsd:attribute name="type" use="required"> * <xsd:simpleType> * <xsd:restriction base="xsd:NMTOKEN"> * <xsd:enumeration value="TC211"/> * <xsd:enumeration value="FGDC"/> * <xsd:enumeration value="19115"/> * <xsd:enumeration value="19139"/> * </xsd:restriction> * </xsd:simpleType> * </xsd:attribute> * <xsd:attribute name="format" use="required"> * <xsd:simpleType> * <xsd:restriction base="xsd:NMTOKEN"> * <xsd:enumeration value="text/xml"/> * <xsd:enumeration value="text/html"/> * <xsd:enumeration value="text/sgml"/> * <xsd:enumeration value="text/plain"/> * </xsd:restriction> * </xsd:simpleType> * </xsd:attribute> * </xsd:extension> * </xsd:simpleContent> * </xsd:complexType> * * </code> * </pre> * @generated */ public class MetadataURLTypeBinding extends AbstractComplexBinding { WfsFactory wfsfactory; public MetadataURLTypeBinding(WfsFactory wfsfactory) { this.wfsfactory = wfsfactory; } /** * @generated */ public QName getTarget() { return WFS.METADATAURLTYPE; } /** * <!-- 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 return null; } }