/* (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_0_0; import javax.xml.namespace.QName; import net.opengis.ows10.Ows10Factory; import net.opengis.wfs.GetCapabilitiesType; 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:GetCapabilitiesType. * * <p> * <pre> * <code> * <xsd:complexType name="GetCapabilitiesType"> <xsd:annotation> * <xsd:documentation> This type defines the * GetCapabilities operation. In response to a * GetCapabilities request, a Web Feature Service must * generate a capabilities XML document that validates against * the schemas defined in WFS-capabilities.xsd. * </xsd:documentation> </xsd:annotation> * <xsd:attribute fixed="1.0.0" name="version" type="xsd:string" * use="optional"/> <xsd:attribute fixed="WFS" name="service" * type="xsd:string" use="required"/> </xsd:complexType> * * </code> * </pre> * @generated */ public class GetCapabilitiesTypeBinding extends AbstractComplexBinding { /** * Wfs factory */ WfsFactory wfsFactory; /** * Ows Factory */ Ows10Factory owsFactory; public GetCapabilitiesTypeBinding(WfsFactory wfsFactory, Ows10Factory owsFactory) { this.wfsFactory = wfsFactory; this.owsFactory = owsFactory; } /** * @generated */ public QName getTarget() { return WFS.GETCAPABILITIESTYPE; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated modifiable */ public Class getType() { return GetCapabilitiesType.class; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated modifiable */ public Object parse(ElementInstance instance, Node node, Object value) throws Exception { GetCapabilitiesType getCapabilities = wfsFactory.createGetCapabilitiesType(); getCapabilities.setAcceptVersions(owsFactory.createAcceptVersionsType()); WFSBindingUtils.service(getCapabilities, node); getCapabilities.getAcceptVersions().getVersion().add(node.getAttributeValue("version")); return getCapabilities; } }