Skip to content
This repository was archived by the owner on Jun 18, 2024. It is now read-only.

Commit 1a86b45

Browse files
author
Menon
committed
issue #580: support for configured TLS and cipherSuites : organizing javadocs
1 parent 6da1742 commit 1a86b45

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/main/java/microsoft/exchange/webservices/data/core/EwsSSLProtocolSocketFactory.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,13 @@ public EwsSSLProtocolSocketFactory(
108108
* Constructor for EasySSLProtocolSocketFactory.
109109
*
110110
* @param context SSL context
111+
* @param supportedProtocols protocol from sys prop
112+
* @param supportedCipherSuites cipherSuites from sys prop
111113
* @param hostnameVerifier hostname verifier
112114
*/
113115
public EwsSSLProtocolSocketFactory(
114-
SSLContext context,String[] supportedProtocols, String[] supportedCipherSuites, HostnameVerifier hostnameVerifier
116+
SSLContext context,String[] supportedProtocols, String[] supportedCipherSuites,
117+
HostnameVerifier hostnameVerifier
115118
) {
116119
super(context,supportedProtocols,supportedCipherSuites, hostnameVerifier);
117120
this.sslcontext = context;

0 commit comments

Comments
 (0)