diff options
author | liamfallon <liam.fallon@est.tech> | 2023-03-14 17:20:20 +0000 |
---|---|---|
committer | liamfallon <liam.fallon@est.tech> | 2023-03-14 17:22:51 +0000 |
commit | e740b7c33217f8564849c523a3607c53bab6e3a8 (patch) | |
tree | d531e86a318c087d150fa947c077f12a7dbfd5f0 /examples/examples-acm/src/main | |
parent | 91ef7bf5e5e5d0d7e9555994a21de1c79fdccc13 (diff) |
Update for SNI Chcecking
SNI checking is now supported in Jersey
Issue-ID: POLICY-4474
Change-Id: I6afc2d577493485f151887180ef152303c456f3a
Signed-off-by: liamfallon <liam.fallon@est.tech>
Diffstat (limited to 'examples/examples-acm/src/main')
-rw-r--r-- | examples/examples-acm/src/main/java/org/onap/policy/apex/examples/acm/AcmTestServerDmaap.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/examples-acm/src/main/java/org/onap/policy/apex/examples/acm/AcmTestServerDmaap.java b/examples/examples-acm/src/main/java/org/onap/policy/apex/examples/acm/AcmTestServerDmaap.java index 1d9d56a4a..9e8b1b71d 100644 --- a/examples/examples-acm/src/main/java/org/onap/policy/apex/examples/acm/AcmTestServerDmaap.java +++ b/examples/examples-acm/src/main/java/org/onap/policy/apex/examples/acm/AcmTestServerDmaap.java @@ -1,6 +1,6 @@ /*- * ============LICENSE_START======================================================= - * Copyright (C) 2022 Nordix Foundation. + * Copyright (C) 2022-2023 Nordix Foundation. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -38,7 +38,7 @@ public class AcmTestServerDmaap implements AutoCloseable { */ public AcmTestServerDmaap() { restServer = HttpServletServerFactoryInstance.getServerFactory().build("AcmTestRestDmaapEndpoint", false, HOST, - restServerPort, "/", false, false); + restServerPort, false, "/", false, false); restServer.addServletClass(null, AcmTestRestDmaapEndpoint.class.getName()); restServer.setSerializationProvider(GsonMessageBodyHandler.class.getName()); restServer.start(); |