414243444546474849
* * @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(); }
6162636465666768
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); }
6970717273747576
} public SimpleClient(String username, String password, String host) { this._gson = new Gson(); this._locator = new Locator(username, host); this._client = new JsonClient(username, password); }
474849505152535455
* * @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(); }