Package com.dragontek.mygpoclient.json

Examples of com.dragontek.mygpoclient.json.JsonClient


   * @param host
   *            hostname of the webservice (gpodder.net)
   */
  public PublicClient(String host) {
    this._locator = new Locator(host);
    this._client = new JsonClient();
    this._gson = new Gson();
  }
View Full Code Here


  }

  public SimpleClient(String username, String password, String host) {
    this._gson = new Gson();
    this._locator = new Locator(username, host);
    this._client = new JsonClient(username, password);
  }
View Full Code Here

  private String FIND_URL = BASE_URL + "media=podcast&entity=podcast&term=";

  private JsonClient client;

  public iTunesSearchApi() {
    client = new JsonClient();
  }
View Full Code Here

 
  public SimpleClient(String username, String password, String host)
  {
    this._gson = new Gson();
    this._locator = new Locator(username, host);
    this._client = new JsonClient(username, password);
  }
View Full Code Here

   * @param host hostname of the webservice (gpodder.net)
   */
  public PublicClient(String host)
  {
    this._locator = new Locator(host);
    this._client = new JsonClient();
    this._gson = new Gson();
  }
View Full Code Here

  private JsonClient client;

  public iTunesSearchApi()
  {
    client = new JsonClient();
  }
View Full Code Here

TOP

Related Classes of com.dragontek.mygpoclient.json.JsonClient

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.