com.supermap.services.ogc

Class Request

  • java.lang.Object
    • com.supermap.services.ogc.Request
  • Direct Known Subclasses:
    WMSRequest


    public class Request
    extends java.lang.Object
    

    The operation supported by the WFS service.

    You can get the capability information of the WFS service through the WFS GetCapability operation. In the Capabilities part of the response document, class in com.supermap.services.ogcRequest is a child element indicating one operation supported by the WFS service.

    The description about the supported GetFeature operation in the response of a sample GetCapability operation is as follows:

     <GetFeature>
     <ResultFormat>
     <GML2/>
     </ResultFormat>
     <DCPType>
     <HTTP>
     <Get onlineResource="http://192.168.113.57:8090/iserver/services/data-world/wfs100?REQUEST=GetFeature"/>
     </HTTP>
     </DCPType>
     </GetFeature>
     
    

    • Field Summary

      Fields 
      Modifier and Type Field and Description
      java.util.List<DCPType> dcpList
      The distributed computing platform list.
      java.lang.String name
      Operation name
    • Constructor Summary

      Constructors 
      Constructor and Description
      Request()
      The Constructor.
      Request(Request request)
      Copy constructor.
    • Method Summary

      Methods 
      Modifier and Type Method and Description
      boolean equals(java.lang.Object obj) 
      int hashCode() 
      • Methods inherited from class java.lang.Object

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

      • name

        public java.lang.String name
        

        Operation name

      • dcpList

        public java.util.List<DCPType> dcpList
        

        The distributed computing platform list.

    • Constructor Detail

      • Request

        public Request()
        

        The Constructor.

      • Request

        public Request(Request request)
        

        Copy constructor.

        Parameters:
        request - Request object
    • Method Detail

      • equals

        public boolean equals(java.lang.Object obj)
        
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        
        Overrides:
        hashCode in class java.lang.Object