Skip to content
This repository was archived by the owner on May 28, 2018. It is now read-only.

Commit bdada1e

Browse files
committed
#3687: SslConfigurator typo - keyManagerFactoryProvider and trustManagerFactoryProvider builder methods set wrong attribute.
Change-Id: I084b112ffaf5d0e0fa7f7ce07c537895b2564441
1 parent def86cc commit bdada1e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core-common/src/main/java/org/glassfish/jersey/SslConfigurator.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,7 @@ public SslConfigurator keyManagerFactoryAlgorithm(String algorithm) {
561561
* @return updated SSL configurator instance.
562562
*/
563563
public SslConfigurator trustManagerFactoryProvider(String provider) {
564-
this.trustManagerFactoryAlgorithm = provider;
564+
this.trustManagerFactoryProvider = provider;
565565
return this;
566566
}
567567

@@ -572,7 +572,7 @@ public SslConfigurator trustManagerFactoryProvider(String provider) {
572572
* @return updated SSL configurator instance.
573573
*/
574574
public SslConfigurator keyManagerFactoryProvider(String provider) {
575-
this.keyManagerFactoryAlgorithm = provider;
575+
this.keyManagerFactoryProvider = provider;
576576
return this;
577577
}
578578

0 commit comments

Comments
 (0)