Skip to content

Instantly share code, notes, and snippets.

@b-wind
Created April 7, 2015 19:08
Show Gist options
  • Save b-wind/c82b7e21a76857abeef8 to your computer and use it in GitHub Desktop.
Save b-wind/c82b7e21a76857abeef8 to your computer and use it in GitHub Desktop.
private static Registry<ConnectionSocketFactory> getDefaultRegistry() {
return RegistryBuilder.<ConnectionSocketFactory>create()
.register("http", PlainConnectionSocketFactory.getSocketFactory())
.register("https", SSLConnectionSocketFactory.getSocketFactory())
.build();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment