/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2008 - 2011, Geomatys * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ package org.geotoolkit.wfs.xml.v200; import javax.xml.bind.annotation.*; import org.geotoolkit.ogc.xml.v200.FilterCapabilities; import org.geotoolkit.ows.xml.AbstractCapabilitiesBase; import org.geotoolkit.ows.xml.Sections; import org.geotoolkit.ows.xml.v110.CapabilitiesBaseType; import org.geotoolkit.ows.xml.v110.OperationsMetadata; import org.geotoolkit.ows.xml.v110.ServiceIdentification; import org.geotoolkit.ows.xml.v110.ServiceProvider; import org.geotoolkit.wfs.xml.WFSCapabilities; import org.geotoolkit.wfs.xml.WFSResponse; /** * <p>Java class for WFS_CapabilitiesType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="WFS_CapabilitiesType"> * <complexContent> * <extension base="{http://www.opengis.net/ows/1.1}CapabilitiesBaseType"> * <sequence> * <element name="WSDL" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attGroup ref="{http://www.w3.org/1999/xlink}simpleLink"/> * </restriction> * </complexContent> * </complexType> * </element> * <element ref="{http://www.opengis.net/wfs/2.0}FeatureTypeList" minOccurs="0"/> * <element ref="{http://www.opengis.net/fes/2.0}Filter_Capabilities" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "WFS_CapabilitiesType", propOrder = { "wsdl", "featureTypeList", "filterCapabilities" }) @XmlRootElement(name = "WFS_Capabilities") public class WFSCapabilitiesType extends CapabilitiesBaseType implements WFSResponse, WFSCapabilities { @XmlElement(name = "WSDL") private WFSCapabilitiesType.WSDL wsdl; @XmlElement(name = "FeatureTypeList") private FeatureTypeListType featureTypeList; @XmlElement(name = "Filter_Capabilities", namespace = "http://www.opengis.net/fes/2.0") private FilterCapabilities filterCapabilities; public WFSCapabilitiesType() { } public WFSCapabilitiesType(final String version, final String updateSequence) { super(version, updateSequence); } public WFSCapabilitiesType(final String version, final ServiceIdentification si, final ServiceProvider sp, final OperationsMetadata om, final FeatureTypeListType ft, final FilterCapabilities fc) { super(si, sp, om, version, null); this.featureTypeList = ft; this.filterCapabilities = fc; } /** * Gets the value of the wsdl property. * * @return * possible object is * {@link WFSCapabilitiesType.WSDL } * */ public WFSCapabilitiesType.WSDL getWSDL() { return wsdl; } /** * Sets the value of the wsdl property. * * @param value * allowed object is * {@link WFSCapabilitiesType.WSDL } * */ public void setWSDL(WFSCapabilitiesType.WSDL value) { this.wsdl = value; } /** * Gets the value of the featureTypeList property. * * @return * possible object is * {@link FeatureTypeListType } * */ @Override public FeatureTypeListType getFeatureTypeList() { return featureTypeList; } /** * Sets the value of the featureTypeList property. * * @param value * allowed object is * {@link FeatureTypeListType } * */ public void setFeatureTypeList(FeatureTypeListType value) { this.featureTypeList = value; } /** * Gets the value of the filterCapabilities property. * * @return * possible object is * {@link FilterCapabilities } * */ public FilterCapabilities getFilterCapabilities() { return filterCapabilities; } /** * Sets the value of the filterCapabilities property. * * @param value * allowed object is * {@link FilterCapabilities } * */ public void setFilterCapabilities(FilterCapabilities value) { this.filterCapabilities = value; } @Override public AbstractCapabilitiesBase applySections(final Sections sections) { FeatureTypeListType ftl = null; OperationsMetadata om = null; ServiceProvider sp = null; ServiceIdentification si = null; if (sections.containsSection("featureTypeList") || sections.containsSection("All")) { ftl = featureTypeList; } if (sections.containsSection("operationsMetadata")|| sections.containsSection("All")) { om = getOperationsMetadata(); } if (sections.containsSection("serviceProvider")|| sections.containsSection("All")) { sp = getServiceProvider(); } if (sections.containsSection("serviceIdentification")|| sections.containsSection("All")) { si = getServiceIdentification(); } return new WFSCapabilitiesType("2.0.0", si, sp, om, ftl, filterCapabilities); } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attGroup ref="{http://www.w3.org/1999/xlink}simpleLink"/> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class WSDL { @XmlAttribute(namespace = "http://www.w3.org/1999/xlink") private String type; @XmlAttribute(namespace = "http://www.w3.org/1999/xlink") @XmlSchemaType(name = "anyURI") private String href; @XmlAttribute(namespace = "http://www.w3.org/1999/xlink") @XmlSchemaType(name = "anyURI") private String role; @XmlAttribute(namespace = "http://www.w3.org/1999/xlink") @XmlSchemaType(name = "anyURI") private String arcrole; @XmlAttribute(namespace = "http://www.w3.org/1999/xlink") private String title; @XmlAttribute(namespace = "http://www.w3.org/1999/xlink") private String show; @XmlAttribute(namespace = "http://www.w3.org/1999/xlink") private String actuate; /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { if (type == null) { return "simple"; } else { return type; } } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Gets the value of the href property. * * @return * possible object is * {@link String } * */ public String getHref() { return href; } /** * Sets the value of the href property. * * @param value * allowed object is * {@link String } * */ public void setHref(String value) { this.href = value; } /** * Gets the value of the role property. * * @return * possible object is * {@link String } * */ public String getRole() { return role; } /** * Sets the value of the role property. * * @param value * allowed object is * {@link String } * */ public void setRole(String value) { this.role = value; } /** * Gets the value of the arcrole property. * * @return * possible object is * {@link String } * */ public String getArcrole() { return arcrole; } /** * Sets the value of the arcrole property. * * @param value * allowed object is * {@link String } * */ public void setArcrole(String value) { this.arcrole = value; } /** * Gets the value of the title property. * * @return * possible object is * {@link String } * */ public String getTitle() { return title; } /** * Sets the value of the title property. * * @param value * allowed object is * {@link String } * */ public void setTitle(String value) { this.title = value; } /** * Gets the value of the show property. * * @return * possible object is * {@link String } * */ public String getShow() { return show; } /** * Sets the value of the show property. * * @param value * allowed object is * {@link String } * */ public void setShow(String value) { this.show = value; } /** * Gets the value of the actuate property. * * @return * possible object is * {@link String } * */ public String getActuate() { return actuate; } /** * Sets the value of the actuate property. * * @param value * allowed object is * {@link String } * */ public void setActuate(String value) { this.actuate = value; } } }