com.supermap.services.providers.aggregation

Class ServiceInfo

  • java.lang.Object
    • com.supermap.services.providers.aggregation.ServiceInfo
  • All Implemented Interfaces:
    java.io.Serializable


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

    Endpoint information.

    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field and Description
      java.lang.String address
      Service binding address.
      java.lang.String binding
      Service binding information.
      java.lang.String type
      The endpoint type of the service.
    • Constructor Summary

      Constructors 
      Constructor and Description
      ServiceInfo() 
    • Method Summary

      Methods 
      Modifier and Type Method and Description
      boolean equals(java.lang.Object obj)
      Determines whether two objects are equal.
      int hashCode()
      Gets the hash value of the object instance
      java.lang.String toString()
      Returns a string that already contains the service endpoint type (# type), the service binding information (# binding), Service binding address (# address) and other initialization information.
      • Methods inherited from class java.lang.Object

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

      • type

        public java.lang.String type
        

        The endpoint type of the service.

        For example, set the SuperMap Objects provided by the GIS function as an endpoint, you need to set the value of the field "UGC"; To set the WMS service as an endpoint, you need to set the value of the field to "WMS".

      • binding

        public java.lang.String binding
        

        Service binding information.

        For example, set the SuperMap Objects provided by the GIS function as an endpoint, in the binding information you need to set here map name, picture output path, Image output site (URL address), etc .; set the WMS service as an endpoint, you need to set the binding information in the WMS service version number, such as "1.1.1".

      • address

        public java.lang.String address
        

        Service binding address.

        For example, set the SuperMap Objects provided by the GIS function as an endpoint, you need to set the value of the field for the SuperMap workspace path, For example, "data \\ world.sxw"; set the WMS service as an endpoint, and you need to set the value of the field to the address of the WMS service.

    • Constructor Detail

      • ServiceInfo

        public ServiceInfo()
        
    • Method Detail

      • toString

        public java.lang.String toString()
        

        Returns a string that already contains the service endpoint type (# type), the service binding information (# binding), Service binding address (# address) and other initialization information.

        Overrides:
        toString in class java.lang.Object
        Returns:
        Contains a string that initializes the data information.
      • equals

        public boolean equals(java.lang.Object obj)
        

        Determines whether two objects are equal.

        Overrides:
        equals in class java.lang.Object
        Parameters:
        obj - The object to be compared.
        Returns:
        Whether the same identity, true means that the two objects are equal.
      • hashCode

        public int hashCode()
        

        Gets the hash value of the object instance

        Overrides:
        hashCode in class java.lang.Object
        Returns:
        hash code value.