Back to project page NetworkFacade.
The source code is released under:
Apache License
If you think the Android project NetworkFacade 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.saguinav.networkfacade.sample; //w w w .j av a2 s. c om import com.saguinav.networkfacade.HttpClient; public class HttpClientSingleton { private static HttpClient sInstance; public static void init(HttpClient httpClient) { if (sInstance == null) { sInstance = httpClient; } } public static HttpClient getHttpClient() { return sInstance; } }