4243444546474849
* @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(); }
62636465666768
} public SimpleClient(String username, String password, String host) { this._gson = new Gson(); this._locator = new Locator(username, host); this._client = new JsonClient(username, password); }
30313233343536
private String FIND_URL = BASE_URL + "media=podcast&entity=podcast&term="; private JsonClient client; public iTunesSearchApi() { client = new JsonClient(); }
70717273747576
public SimpleClient(String username, String password, String host) { this._gson = new Gson(); this._locator = new Locator(username, host); this._client = new JsonClient(username, password); }
4849505152535455
* @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(); }
31323334353637
private JsonClient client; public iTunesSearchApi() { client = new JsonClient(); }