Interface IProtocolMessages


public interface IProtocolMessages
This interface has one method for each operation and for each communication protocol. Each method returns the protocol message.
Author:
Jorge Piera Llodra (piera_jor@gva.es)
  • Method Details

    • getHTTPGETCapabilities

      org.apache.commons.httpclient.NameValuePair[] getHTTPGETCapabilities(boolean upper)
      operation : getCapabilities protocol : HTTP GET
      Parameters:
      upper - If the 'G' of the getCapabilities must be written in uppercase
      Returns:
      NameValuePair with the request parameters
    • getHTTPGETDescribeFeature

      org.apache.commons.httpclient.NameValuePair[] getHTTPGETDescribeFeature(String feature)
      operation : describeFeature protocol : HTTP GET
      Parameters:
      feature -
      fetaure - Feature to describe
      Returns:
      NameValuePair with the request parameters
    • getHTTPGETFeatures

      org.apache.commons.httpclient.NameValuePair[] getHTTPGETFeatures(GazetteerQuery query, int firstRecord)
      operation : getFeature protocol : HTTP GET
      Parameters:
      query -
      firstRecord -
      Returns:
      NameValuePair with the request parameters
    • getHTTPPOSTCapabilities

      String getHTTPPOSTCapabilities()
      operation : getCapabilities protocol : HTTP POST
      Returns:
      String with the POST message
    • getHTTPPOSTDescribeFeature

      String getHTTPPOSTDescribeFeature(String feature)
      operation : describeFeature protocol : HTTP POST
      Parameters:
      feature -
      fetaure - Feature to describe
      Returns:
      String with the POST message
    • getHTTPPOSTFeature

      String getHTTPPOSTFeature(GazetteerQuery query, int firstRecord)
      operation : getFeature protocol : HTTP POST
      Parameters:
      query -
      firstRecord -
      Returns:
      String with the POST message
    • getSOAPCapabilities

      String getSOAPCapabilities()
      operation : getCapabilities protocol : SOAP
      Returns:
      String with the SOAP message
    • getSOAPDescribeFeature

      String getSOAPDescribeFeature(String feature)
      operation : describeFeature protocol : SOAP
      Parameters:
      feature -
      fetaure - Feature to describe
      Returns:
      String with the SOAP message
    • getSOAPFeature

      String getSOAPFeature(GazetteerQuery query, int firstRecord)
      operation : getFeature protocol : SOAP
      Parameters:
      query -
      firstRecord -
      Returns:
      String with the SOAP message