mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 12:02:05 +01:00
Update javadoc for (get|set)CustomSSLContext()
This commit is contained in:
parent
42f2eae8fb
commit
9484fb9259
1 changed files with 9 additions and 5 deletions
|
@ -288,19 +288,23 @@ public class ConnectionConfiguration implements Cloneable {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the custom SSLContext for SSL sockets. This is null by default.
|
* Gets the custom SSLContext previously set with {@link #setCustomSSLContext(SSLContext)} for
|
||||||
|
* SSL sockets. This is null by default.
|
||||||
*
|
*
|
||||||
* @return the SSLContext previously set with setCustomSSLContext() or null.
|
* @return the custom SSLContext or null.
|
||||||
*/
|
*/
|
||||||
public SSLContext getCustomSSLContext() {
|
public SSLContext getCustomSSLContext() {
|
||||||
return this.customSSLContext;
|
return this.customSSLContext;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets a custom SSLContext for creating SSL sockets. A custom Context causes all other
|
* Sets a custom SSLContext for creating SSL sockets.
|
||||||
* SSL/TLS realted settings to be ignored.
|
* <p>
|
||||||
|
* For more information on how to create a SSLContext see <a href=
|
||||||
|
* "http://docs.oracle.com/javase/8/docs/technotes/guides/security/jsse/JSSERefGuide.html#X509TrustManager"
|
||||||
|
* >Java Secure Socket Extension (JSEE) Reference Guide: Creating Your Own X509TrustManager</a>
|
||||||
*
|
*
|
||||||
* @param context the custom SSLContext for new sockets; null to reset default behavior.
|
* @param context the custom SSLContext for new sockets
|
||||||
*/
|
*/
|
||||||
public void setCustomSSLContext(SSLContext context) {
|
public void setCustomSSLContext(SSLContext context) {
|
||||||
this.customSSLContext = context;
|
this.customSSLContext = context;
|
||||||
|
|
Loading…
Reference in a new issue