Interface ILcdWFSServiceMetaData


public interface ILcdWFSServiceMetaData
Deprecated.
Since 2017.0 Please make use of ILcdWFSCapabilitiesProvider.
An interface for the service metadata section in a WFS capabilities document. The user can customize the service section by implementing this interface and registering the implementation with the command dispatcher.
  • Method Summary

    Modifier and Type
    Method
    Description
    Deprecated.
    Returns a description of the WFS service.
    getAccessConstraint(int aIndex)
    Deprecated.
    Returns the access constraint at the given index.
    int
    Deprecated.
    Returns the number of access constraints associated with the WFS service.
    Deprecated.
    Returns a string describing the fees applicable to the WFS service.
    getKeyword(int aIndex)
    Deprecated.
    Returns the keyword at the given index.
    int
    Deprecated.
    Returns the number of keywords associated with the WFS service.
    Deprecated.
    Returns a unique identifier for the WFS service.
    Deprecated.
    Returns a title for the WFS service, which can be displayed to the user instead of the unique identifier.
  • Method Details

    • getName

      String getName()
      Deprecated.
      Returns a unique identifier for the WFS service.
      Returns:
      a unique identifier for the WFS service.
    • getTitle

      String getTitle()
      Deprecated.
      Returns a title for the WFS service, which can be displayed to the user instead of the unique identifier.
      Returns:
      a human-readable title for the WFS service.
    • getAbstract

      String getAbstract()
      Deprecated.
      Returns a description of the WFS service.
      Returns:
      a description of the WFS service.
    • getFees

      String getFees()
      Deprecated.
      Returns a string describing the fees applicable to the WFS service.
      Returns:
      a string describing the fees applicable to the WFS service.
    • getKeywordCount

      int getKeywordCount()
      Deprecated.
      Returns the number of keywords associated with the WFS service.
      Returns:
      the number of keywords associated with the WFS service.
    • getKeyword

      String getKeyword(int aIndex) throws IndexOutOfBoundsException
      Deprecated.
      Returns the keyword at the given index.
      Parameters:
      aIndex - the index of the keyword to be retrieved
      Returns:
      the keyword at the given index.
      Throws:
      IndexOutOfBoundsException - if the index is out of range (index < 0 || index >= getKeywordCount()).
    • getAccessConstraintCount

      int getAccessConstraintCount()
      Deprecated.
      Returns the number of access constraints associated with the WFS service.
      Returns:
      the number of access constraints associated with the WFS service.
    • getAccessConstraint

      String getAccessConstraint(int aIndex) throws IndexOutOfBoundsException
      Deprecated.
      Returns the access constraint at the given index.
      Parameters:
      aIndex - the index of the access constraint to be retrieved
      Returns:
      the access constraint at the given index.
      Throws:
      IndexOutOfBoundsException - if the index is out of range (index < 0 || index >= getAccessConstraintCount()).