Revision 15558 trunk/applications/appCatalogAndGazetteerClient/src/es/gva/cit/gazetteer/drivers/IProtocolMessages.java

View differences:

IProtocolMessages.java
40 40
*   dac@iver.es
41 41
*/
42 42
package es.gva.cit.gazetteer.drivers;
43
import es.gva.cit.gazetteer.querys.Query;
44 43
import org.apache.commons.httpclient.NameValuePair;
44

  
45
import es.gva.cit.gazetteer.querys.GazetteerQuery;
45 46
/**
46 47
 * This interface has one method for each operation and for each
47 48
 * communication protocol. Each method returns the protocol
......
79 80
 * @param query 
80 81
 * @param firstRecord 
81 82
 */
82
    public NameValuePair[] getHTTPGETFeatures(Query query, int firstRecord);
83
    public NameValuePair[] getHTTPGETFeatures(GazetteerQuery query, int firstRecord);
83 84
/**
84 85
 * operation : getCapabilities
85 86
 * protocol : HTTP POST
......
107 108
 * @param query 
108 109
 * @param firstRecord 
109 110
 */
110
    public String getHTTPPOSTFeature(Query query, int firstRecord);
111
    public String getHTTPPOSTFeature(GazetteerQuery query, int firstRecord);
111 112
/**
112 113
 * operation : getCapabilities
113 114
 * protocol : SOAP
......
135 136
 * @param query 
136 137
 * @param firstRecord 
137 138
 */
138
    public String getSOAPFeature(Query query, int firstRecord);
139
    public String getSOAPFeature(GazetteerQuery query, int firstRecord);
139 140
}
140 141

  
141 142

  

Also available in: Unified diff