From 8a0f58a005175959f5b56c0840ee9980f0d68c01 Mon Sep 17 00:00:00 2001 From: Rodrigo Lima Date: Fri, 5 Jun 2020 14:02:15 -0400 Subject: Java 11 migration - 'test-apis-ci' - Removed references to protected packages (sun.net.*) Issue-ID: SDC-3037 Signed-off-by: Rodrigo Lima Change-Id: Ibbf25af390e624e15fb2bc8ea17777056fe5f3b5 --- .../sdc/ci/tests/datatypes/http/HttpRequest.java | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/test-apis-ci/src/main/java/org/openecomp/sdc/ci/tests/datatypes/http/HttpRequest.java b/test-apis-ci/src/main/java/org/openecomp/sdc/ci/tests/datatypes/http/HttpRequest.java index 0e81a7b2ac..ff01e7d999 100644 --- a/test-apis-ci/src/main/java/org/openecomp/sdc/ci/tests/datatypes/http/HttpRequest.java +++ b/test-apis-ci/src/main/java/org/openecomp/sdc/ci/tests/datatypes/http/HttpRequest.java @@ -31,9 +31,7 @@ import org.apache.http.impl.client.HttpClients; import org.openecomp.sdc.ci.tests.utils.rest.BaseRestUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; -import sun.net.www.protocol.https.DefaultHostnameVerifier; -import javax.net.ssl.HostnameVerifier; import javax.net.ssl.HttpsURLConnection; import java.io.*; import java.net.HttpURLConnection; @@ -256,12 +254,10 @@ public class HttpRequest { RestResponse restResponse = new RestResponse(); url = url.replaceAll("\\s", "%20"); - URL obj = new URL(null, url, new sun.net.www.protocol.https.Handler()); + URL obj = new URL(null, url); HttpsURLConnection con = (HttpsURLConnection)obj.openConnection(); // optional default is GET con.setRequestMethod("GET"); - HostnameVerifier hostnameVerifier = new DefaultHostnameVerifier(); - con.setHostnameVerifier(hostnameVerifier); addHttpsRequestHeaders(headers, con); Boolean multiPart = false; if(headers.get(HttpHeaderEnum.ACCEPT.getValue()) != null) { @@ -295,10 +291,8 @@ public class HttpRequest { public RestResponse httpsSendPost(String url, String body, Map headers) throws IOException { RestResponse restResponse = new RestResponse(); - URL obj = new URL(null, url, new sun.net.www.protocol.https.Handler()); + URL obj = new URL(null, url); HttpsURLConnection con = (HttpsURLConnection)obj.openConnection(); - HostnameVerifier hostnameVerifier = new DefaultHostnameVerifier(); - con.setHostnameVerifier(hostnameVerifier); // add request method con.setRequestMethod("POST"); // add request headers @@ -336,10 +330,8 @@ public class HttpRequest { public RestResponse httpsSendByMethod(String url, String method, String body, Map headers) throws IOException { RestResponse restResponse = new RestResponse(); - URL obj = new URL(null, url, new sun.net.www.protocol.https.Handler()); + URL obj = new URL(null, url); HttpsURLConnection con = (HttpsURLConnection)obj.openConnection(); - HostnameVerifier hostnameVerifier = new DefaultHostnameVerifier(); - con.setHostnameVerifier(hostnameVerifier); // add request method con.setRequestMethod(method); // add request headers @@ -379,10 +371,8 @@ public class HttpRequest { public RestResponse httpsSendDelete(String url, Map headers) throws IOException { RestResponse restResponse = new RestResponse(); - URL obj = new URL(null, url, new sun.net.www.protocol.https.Handler()); + URL obj = new URL(null, url); HttpsURLConnection con = (HttpsURLConnection)obj.openConnection(); - HostnameVerifier hostnameVerifier = new DefaultHostnameVerifier(); - con.setHostnameVerifier(hostnameVerifier); // add request headers addHttpRequestHEaders(headers, con); -- cgit 1.2.3-korg