diff options
Diffstat (limited to 'libjava/javax/net/ssl/HttpsURLConnection.java')
-rw-r--r-- | libjava/javax/net/ssl/HttpsURLConnection.java | 70 |
1 files changed, 47 insertions, 23 deletions
diff --git a/libjava/javax/net/ssl/HttpsURLConnection.java b/libjava/javax/net/ssl/HttpsURLConnection.java index a7b86c1..38e686a 100644 --- a/libjava/javax/net/ssl/HttpsURLConnection.java +++ b/libjava/javax/net/ssl/HttpsURLConnection.java @@ -59,10 +59,18 @@ public abstract class HttpsURLConnection extends HttpURLConnection // Fields. // ------------------------------------------------------------------ - /** The default verifier. */ + /** + * The default verifier. + * This is lazily initialized as required. + * @see #getDefaultHostnameVerifier + */ private static HostnameVerifier defaultVerifier; - /** The default factory. */ + /** + * The default factory. + * This is lazily initialized as required. + * @see #getDefaultSSLSocketFactory + */ private static SSLSocketFactory defaultFactory; /** @@ -75,21 +83,6 @@ public abstract class HttpsURLConnection extends HttpURLConnection */ private SSLSocketFactory factory; - // Static initializer. - // ------------------------------------------------------------------ - - static { - defaultVerifier = new TrivialHostnameVerifier(); - try - { - defaultFactory = (SSLSocketFactory) SSLSocketFactory.getDefault(); - } - catch (Throwable t) - { - t.printStackTrace(); - } - } - // Constructor. // ------------------------------------------------------------------ @@ -102,8 +95,6 @@ public abstract class HttpsURLConnection extends HttpURLConnection protected HttpsURLConnection(URL url) throws IOException { super(url); - hostnameVerifier = defaultVerifier; - factory = defaultFactory; } // Class methods. @@ -112,11 +103,17 @@ public abstract class HttpsURLConnection extends HttpURLConnection /** * Returns the default hostname verifier used in all new * connections. + * If the default verifier has not been set, a new default one will be + * provided by this method. * * @return The default hostname verifier. */ - public static HostnameVerifier getDefaultHostnameVerifier() + public static synchronized HostnameVerifier getDefaultHostnameVerifier() { + if (defaultVerifier == null) + { + defaultVerifier = new TrivialHostnameVerifier(); + } return defaultVerifier; } @@ -137,17 +134,33 @@ public abstract class HttpsURLConnection extends HttpURLConnection SecurityManager sm = System.getSecurityManager(); if (sm != null) sm.checkPermission(new SSLPermission("setHostnameVerifier")); - defaultVerifier = newDefault; + synchronized (HttpsURLConnection.class) + { + defaultVerifier = newDefault; + } } /** * Returns the default SSL socket factory used in all new * connections. + * If the default SSL socket factory has not been set, a new default one + * will be provided by this method. * * @return The default SSL socket factory. */ - public static SSLSocketFactory getDefaultSSLSocketFactory() + public static synchronized SSLSocketFactory getDefaultSSLSocketFactory() { + if (defaultFactory == null) + { + try + { + defaultFactory = (SSLSocketFactory) SSLSocketFactory.getDefault(); + } + catch (Throwable t) + { + t.printStackTrace(); + } + } return defaultFactory; } @@ -168,7 +181,10 @@ public abstract class HttpsURLConnection extends HttpURLConnection SecurityManager sm = System.getSecurityManager(); if (sm != null) sm.checkSetFactory(); - defaultFactory = newDefault; + synchronized (HttpsURLConnection.class) + { + defaultFactory = newDefault; + } } // Instance methods. @@ -181,6 +197,10 @@ public abstract class HttpsURLConnection extends HttpURLConnection */ public HostnameVerifier getHostnameVerifier() { + if (hostnameVerifier == null) + { + hostnameVerifier = getDefaultHostnameVerifier(); + } return hostnameVerifier; } @@ -205,6 +225,10 @@ public abstract class HttpsURLConnection extends HttpURLConnection */ public SSLSocketFactory getSSLSocketFactory() { + if (factory == null) + { + factory = getDefaultSSLSocketFactory(); + } return factory; } |