com.supermap.services.wfs

Class WFSConfig

  • java.lang.Object
    • com.supermap.services.wfs.WFSConfig
  • All Implemented Interfaces:
    java.io.Serializable


    public class WFSConfig
    extends java.lang.Object
    implements java.io.Serializable
    

    WFS service configuration information.

    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field and Description
      int maxFeatures
      getFeature operation The maximum number of return elements.
      NamespaceConfig namespaceConfig
      WFS Namespace configuration.
      java.lang.String version
      WFS service version number
    • Constructor Summary

      Constructors 
      Constructor and Description
      WFSConfig() 
    • Method Summary

      Methods 
      Modifier and Type Method and Description
      boolean equals(java.lang.Object obj)
      Compares whether the specified object equals to the current WMSConfig object.
      int hashCode()
      Gets the hash value of the object instance
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • namespaceConfig

        public NamespaceConfig namespaceConfig
        
        WFS Namespace configuration.
      • maxFeatures

        public int maxFeatures
        

        getFeature operation The maximum number of return elements. Defaults is 2000, and if set to 0 or -1, it means that all records are returned by default.

      • version

        public java.lang.String version
        

        WFS service version number

        Since:
        7.1.0
    • Constructor Detail

      • WFSConfig

        public WFSConfig()
        
    • Method Detail

      • hashCode

        public final int hashCode()
        
        Gets the hash value of the object instance
        Overrides:
        hashCode in class java.lang.Object
        Returns:
        hash value
      • equals

        public final boolean equals(java.lang.Object obj)
        

        Compares whether the specified object equals to the current WMSConfig object.

        Overrides:
        equals in class java.lang.Object
        Parameters:
        obj - the object to compare with the current WMSConfig object.
        Returns:
        true if the two objects are equal, or false otherwise.