Package org.gvsig.gazetteer.drivers
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 Summary
Modifier and TypeMethodDescriptionorg.apache.commons.httpclient.NameValuePair[]getHTTPGETCapabilities(boolean upper) operation : getCapabilities protocol : HTTP GETorg.apache.commons.httpclient.NameValuePair[]getHTTPGETDescribeFeature(String feature) operation : describeFeature protocol : HTTP GETorg.apache.commons.httpclient.NameValuePair[]getHTTPGETFeatures(GazetteerQuery query, int firstRecord) operation : getFeature protocol : HTTP GEToperation : getCapabilities protocol : HTTP POSTgetHTTPPOSTDescribeFeature(String feature) operation : describeFeature protocol : HTTP POSTgetHTTPPOSTFeature(GazetteerQuery query, int firstRecord) operation : getFeature protocol : HTTP POSToperation : getCapabilities protocol : SOAPgetSOAPDescribeFeature(String feature) operation : describeFeature protocol : SOAPgetSOAPFeature(GazetteerQuery query, int firstRecord) operation : getFeature protocol : SOAP
-
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
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
operation : describeFeature protocol : HTTP POST- Parameters:
feature-fetaure- Feature to describe- Returns:
- String with the POST message
-
getHTTPPOSTFeature
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
operation : describeFeature protocol : SOAP- Parameters:
feature-fetaure- Feature to describe- Returns:
- String with the SOAP message
-
getSOAPFeature
operation : getFeature protocol : SOAP- Parameters:
query-firstRecord-- Returns:
- String with the SOAP message
-