}
}
TrustManager[] trusts = new TrustManager[] { new AlwaysTrustManager(this.getTrustStore()) };
context.init(managers, trusts, this.rand);
HttpsURLConnection.setDefaultSSLSocketFactory(context.getSocketFactory());
HttpsURLConnection.setDefaultHostnameVerifier(new HostnameVerifier() {
public boolean verify(String urlHostname, String certHostname) {
return true;
}
});
log.debug("SSL stuff all set");