HTTPCLIENT-1231, HTTPCLIENT-1232: javadoc fixes

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1383865 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Oleg Kalnichevski 2012-09-12 09:28:12 +00:00
parent ee5bc9b600
commit 7985a45e97
2 changed files with 4 additions and 3 deletions

View File

@ -36,11 +36,12 @@ import org.apache.http.util.LangUtils;
* Encapsulates specifics of a protocol scheme such as "http" or "https". Schemes are identified
* by lowercase names. Supported schemes are typically collected in a {@link SchemeRegistry
* SchemeRegistry}.
* <p>
* <p/>
* For example, to configure support for "https://" URLs, you could write code like the following:
* <pre>
* Scheme https = new Scheme("https", 443, new MySecureSocketFactory());
* SchemeRegistry.DEFAULT.register(https);
* SchemeRegistry registry = new SchemeRegistry();
* registry.register(https);
* </pre>
*
* @since 4.0

View File

@ -178,7 +178,7 @@ public class SSLSocketFactory implements SchemeLayeredSocketFactory,
/**
* Gets the default factory, which uses system properties for initializing the SSL context
* as described in
* <a href="http://download.oracle.com/javase/1,5.0/docs/guide/security/jsse/JSSERefGuide.html">
* <a href="http://docs.oracle.com/javase/1.5.0/docs/guide/security/jsse/JSSERefGuide.html">
* "JavaTM Secure Socket Extension (JSSE) Reference Guide for the JavaTM 2 Platform
* Standard Edition 5</a>
* <p>