/* (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.ows.xml.v1_0; import javax.xml.namespace.QName; import net.opengis.ows10.Ows10Factory; import org.geotools.xml.AbstractComplexBinding; import org.geotools.xml.ElementInstance; import org.geotools.xml.Node; /** * Binding object for the type http://www.opengis.net/ows:ResponsiblePartySubsetType. * * <p> * <pre> * <code> * <complexType name="ResponsiblePartySubsetType"> * <annotation> * <documentation>Identification of, and means of communication with, person responsible for the server. </documentation> * <documentation>For OWS use in the ServiceProvider section of a service metadata document, the optional organizationName element was removed, since this type is always used with the ProviderName element which provides that information. The mandatory "role" element was changed to optional, since no clear use of this information is known in the ServiceProvider section. </documentation> * </annotation> * <sequence> * <element minOccurs="0" ref="ows:IndividualName"/> * <element minOccurs="0" ref="ows:PositionName"/> * <element minOccurs="0" ref="ows:ContactInfo"/> * <element minOccurs="0" ref="ows:Role"/> * </sequence> * </complexType> * * </code> * </pre> * @generated */ public class ResponsiblePartySubsetTypeBinding extends AbstractComplexBinding { Ows10Factory owsfactory; public ResponsiblePartySubsetTypeBinding(Ows10Factory owsfactory) { this.owsfactory = owsfactory; } /** * @generated */ public QName getTarget() { return OWS.RESPONSIBLEPARTYSUBSETTYPE; } /** * <!-- 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; } }