Package com.aichamorro.dal.http

Examples of com.aichamorro.dal.http.HttpOperation


  public RestDataSource(String url) {
    _queryAdapter = new RestDataQueryAdapter(url);
  }

  public boolean executeQuery(DataQuery query) {
    HttpOperation operation = _queryAdapter.objectForQuery(query);

    return true;
  }
View Full Code Here


  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;
  }
View Full Code Here

TOP

Related Classes of com.aichamorro.dal.http.HttpOperation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.