/** * * * * $Id$ */ package net.opengis.wfs; import net.opengis.ows10.CapabilitiesBaseType; import org.opengis.filter.capability.FilterCapabilities; /** * * A representation of the model object 'Capabilities Type'. * * * * * XML encoded WFS GetCapabilities operation response. This * document provides clients with service metadata about a * specific service instance, including metadata about the * tightly-coupled data served. If the server does not implement * the updateSequence parameter, the server shall always return * the complete Capabilities document, without the updateSequence * parameter. When the server implements the updateSequence * parameter and the GetCapabilities operation request included * the updateSequence parameter with the current value, the server * shall return this element with only the "version" and * "updateSequence" attributes. Otherwise, all optional elements * shall be included or not depending on the actual value of the * Contents parameter in the GetCapabilities operation request. * * *

* The following features are supported: *

*

* * @see net.opengis.wfs.WfsPackage#getWFSCapabilitiesType() * @model extendedMetaData="name='WFS_CapabilitiesType' kind='elementOnly'" * @generated */ public interface WFSCapabilitiesType extends CapabilitiesBaseType { /** * Returns the value of the 'Feature Type List' containment reference. * *

* If the meaning of the 'Feature Type List' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Feature Type List' containment reference. * @see #setFeatureTypeList(FeatureTypeListType) * @see net.opengis.wfs.WfsPackage#getWFSCapabilitiesType_FeatureTypeList() * @model containment="true" * extendedMetaData="kind='element' name='FeatureTypeList' namespace='##targetNamespace'" * @generated */ FeatureTypeListType getFeatureTypeList(); /** * Sets the value of the '{@link net.opengis.wfs.WFSCapabilitiesType#getFeatureTypeList Feature Type List}' containment reference. * * * @param value the new value of the 'Feature Type List' containment reference. * @see #getFeatureTypeList() * @generated */ void setFeatureTypeList(FeatureTypeListType value); /** * Returns the value of the 'Serves GML Object Type List' containment reference. * *

* If the meaning of the 'Serves GML Object Type List' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Serves GML Object Type List' containment reference. * @see #setServesGMLObjectTypeList(GMLObjectTypeListType) * @see net.opengis.wfs.WfsPackage#getWFSCapabilitiesType_ServesGMLObjectTypeList() * @model containment="true" * extendedMetaData="kind='element' name='ServesGMLObjectTypeList' namespace='##targetNamespace'" * @generated */ GMLObjectTypeListType getServesGMLObjectTypeList(); /** * Sets the value of the '{@link net.opengis.wfs.WFSCapabilitiesType#getServesGMLObjectTypeList Serves GML Object Type List}' containment reference. * * * @param value the new value of the 'Serves GML Object Type List' containment reference. * @see #getServesGMLObjectTypeList() * @generated */ void setServesGMLObjectTypeList(GMLObjectTypeListType value); /** * Returns the value of the 'Supports GML Object Type List' containment reference. * *

* If the meaning of the 'Supports GML Object Type List' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Supports GML Object Type List' containment reference. * @see #setSupportsGMLObjectTypeList(GMLObjectTypeListType) * @see net.opengis.wfs.WfsPackage#getWFSCapabilitiesType_SupportsGMLObjectTypeList() * @model containment="true" * extendedMetaData="kind='element' name='SupportsGMLObjectTypeList' namespace='##targetNamespace'" * @generated */ GMLObjectTypeListType getSupportsGMLObjectTypeList(); /** * Sets the value of the '{@link net.opengis.wfs.WFSCapabilitiesType#getSupportsGMLObjectTypeList Supports GML Object Type List}' containment reference. * * * @param value the new value of the 'Supports GML Object Type List' containment reference. * @see #getSupportsGMLObjectTypeList() * @generated */ void setSupportsGMLObjectTypeList(GMLObjectTypeListType value); /** * Returns the value of the 'Filter Capabilities' attribute. * *

* If the meaning of the 'Filter Capabilities' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Filter Capabilities' attribute. * @see #setFilterCapabilities(FilterCapabilities) * @see net.opengis.wfs.WfsPackage#getWFSCapabilitiesType_FilterCapabilities() * @model unique="false" dataType="net.opengis.wfs.FilterCapabilities" required="true" * extendedMetaData="kind='element' name='Filter_Capabilities' namespace='http://www.opengis.net/ogc'" * @generated */ FilterCapabilities getFilterCapabilities(); /** * Sets the value of the '{@link net.opengis.wfs.WFSCapabilitiesType#getFilterCapabilities Filter Capabilities}' attribute. * * * @param value the new value of the 'Filter Capabilities' attribute. * @see #getFilterCapabilities() * @generated */ void setFilterCapabilities(FilterCapabilities value); } // WFSCapabilitiesType