Back to project page playnomics-android.
The source code is released under:
Apache License
If you think the Android project playnomics-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.playnomics.android.client; /*from w w w . ja v a 2 s . c o m*/ import java.io.IOException; import java.net.HttpURLConnection; import java.util.TreeMap; public interface IHttpConnectionFactory { HttpURLConnection startConnectionForUrl(String urlString) throws IOException; public String buildUrl(String url, String path, TreeMap<String, Object> queryParameters); }