summaryrefslogtreecommitdiffstats
path: root/auth/auth-core
diff options
context:
space:
mode:
authorInstrumental <jgonap@stl.gathman.org>2020-01-28 15:54:01 -0600
committerInstrumental <jgonap@stl.gathman.org>2020-01-28 16:13:50 -0600
commit0a15ed81fdde99920359f209341114119c1aa11a (patch)
tree588d100a24153951eec02dae398cfb84f05902a0 /auth/auth-core
parent82755753f41112e1cdd91b2994620ad074dfbf20 (diff)
Modify for use of JDK 11
Issue-ID: AAF-1066 Signed-off-by: Instrumental <jgonap@stl.gathman.org> Change-Id: I31484958c48b0d9b930921bec2581144e0675970
Diffstat (limited to 'auth/auth-core')
-rw-r--r--auth/auth-core/src/main/java/org/onap/aaf/auth/server/AbsService.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/auth/auth-core/src/main/java/org/onap/aaf/auth/server/AbsService.java b/auth/auth-core/src/main/java/org/onap/aaf/auth/server/AbsService.java
index 678fb28e..0e770e5f 100644
--- a/auth/auth-core/src/main/java/org/onap/aaf/auth/server/AbsService.java
+++ b/auth/auth-core/src/main/java/org/onap/aaf/auth/server/AbsService.java
@@ -25,7 +25,7 @@ import java.security.NoSuchAlgorithmException;
import java.util.Properties;
import javax.net.ssl.SSLContext;
-import javax.net.ssl.SSLSocketFactory;
+import javax.net.ssl.SSLServerSocketFactory;
import javax.servlet.Filter;
import org.onap.aaf.auth.common.Define;
@@ -86,7 +86,7 @@ public abstract class AbsService<ENV extends BasicEnv, TRANS extends Trans> exte
} catch (NoSuchAlgorithmException e) {
throw new CadiException("SSLContext issue",e);
}
- SSLSocketFactory sf = context.getSocketFactory();
+ SSLServerSocketFactory sf = context.getServerSocketFactory();
StringBuilder sb = new StringBuilder("Available Cipher Suites: ");
boolean first = true;
int count=0;