Class OgcFeatureServiceInfo


  • public final class OgcFeatureServiceInfo
    extends java.lang.Object
    Provides the metadata for an "OGC API - Features" service.

    The metadata for an "OGC API - Features" service includes the name, title, description and lists of the feature collections it contains.

    Since:
    100.9.0
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getDescription()
      Gets the description of the service.
      java.util.List<OgcFeatureCollectionInfo> getFeatureCollectionInfos()
      Gets information about the feature collections provided by the service.
      java.lang.String getTitle()
      Gets the descriptive (human-readable) name for the service.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • getTitle

        public java.lang.String getTitle()
        Gets the descriptive (human-readable) name for the service.
        Returns:
        the descriptive (human-readable) name for the service
        Since:
        100.9.0
      • getDescription

        public java.lang.String getDescription()
        Gets the description of the service.
        Returns:
        the description of the service
        Since:
        100.9.0
      • getFeatureCollectionInfos

        public java.util.List<OgcFeatureCollectionInfo> getFeatureCollectionInfos()
        Gets information about the feature collections provided by the service.

        This method can be used to discover the feature collections exposed by an "OGC API - Features" service in support of a browsing experience.

        Returns:
        an unmodifiable list of OGCFeatureCollectionInfo objects
        Since:
        100.9.0