public RestDataQueryAdapter(String url) {
_url = url;
}
public HttpOperation objectForQuery(DataQuery query) {
HttpOperation operation = new HttpOperation(_url);
operation.setMethod(methodFromQuery(query));
// TODO Add the parameters to the operation
// TODO Execute the HttpOperation
return operation;
}