Package com.dragontek.mygpoclient

Examples of com.dragontek.mygpoclient.Locator


   *
   * @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


    this(username, password, Global.HOST);
  }

  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

  }
 
  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

TOP

Related Classes of com.dragontek.mygpoclient.Locator

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.