File tree 3 files changed +7
-3
lines changed
src/main/java/com/networknt/ldap
3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 34
34
<groupId >com.networknt</groupId >
35
35
<artifactId >config</artifactId >
36
36
</dependency >
37
+ <dependency >
38
+ <groupId >com.networknt</groupId >
39
+ <artifactId >ldap-util</artifactId >
40
+ </dependency >
37
41
<dependency >
38
42
<groupId >org.slf4j</groupId >
39
43
<artifactId >slf4j-api</artifactId >
Original file line number Diff line number Diff line change 36
36
</dependency >
37
37
<dependency >
38
38
<groupId >com.networknt</groupId >
39
- <artifactId >client</artifactId >
39
+ <artifactId >http- client</artifactId >
40
40
</dependency >
41
41
<dependency >
42
42
<groupId >com.networknt</groupId >
Original file line number Diff line number Diff line change 1
1
package com .networknt .ldap ;
2
2
3
- import com .networknt .client .Http2Client ;
3
+ import com .networknt .http . client .HttpClientRequest ;
4
4
import org .slf4j .Logger ;
5
5
import org .slf4j .LoggerFactory ;
6
6
@@ -18,7 +18,7 @@ public class LdapSSLSocketFactory extends SSLSocketFactory {
18
18
19
19
public LdapSSLSocketFactory () {
20
20
try {
21
- SSLContext ctx = Http2Client .createSSLContext ();
21
+ SSLContext ctx = HttpClientRequest .createSSLContext ();
22
22
socketFactory = ctx .getSocketFactory ();
23
23
} catch ( Exception ex ){ throw new IllegalArgumentException (ex ); }
24
24
}
You can’t perform that action at this time.
0 commit comments