Created
April 16, 2012 13:03
-
-
Save cdoger/2398657 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class SingletonClient { | |
private static final SingletonClient instance = new SingletonClient(); | |
private static DefaultHttpClient client; | |
public static SingletonClient getInstance() { | |
setClient(new DefaultHttpClient()); | |
return instance; | |
} | |
public static DefaultHttpClient getClient() { | |
return client; | |
} | |
public static void setClient(DefaultHttpClient client) { | |
SingletonClient.client = client; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment