Skip to content

Instantly share code, notes, and snippets.

@cdoger
Created April 16, 2012 13:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cdoger/2398657 to your computer and use it in GitHub Desktop.
Save cdoger/2398657 to your computer and use it in GitHub Desktop.
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