From 687a149af6ff59fba9e614e060a598392b68db6b Mon Sep 17 00:00:00 2001 From: Zhaoxing Date: Thu, 28 Sep 2017 17:04:44 +0800 Subject: Add unit test for vfc-nfvo-wfengine Change-Id: I75acdc20d9aa6ccb650b80d93c675bab7c27dca9 Issue-id: VFC-454 Signed-off-by: Zhaoxing --- .../java/org/onap/workflow/common/RestClient.java | 28 ---------------------- 1 file changed, 28 deletions(-) (limited to 'wfenginemgrservice/src/main/java/org/onap/workflow/common/RestClient.java') diff --git a/wfenginemgrservice/src/main/java/org/onap/workflow/common/RestClient.java b/wfenginemgrservice/src/main/java/org/onap/workflow/common/RestClient.java index f179fe6..2eeb2fc 100644 --- a/wfenginemgrservice/src/main/java/org/onap/workflow/common/RestClient.java +++ b/wfenginemgrservice/src/main/java/org/onap/workflow/common/RestClient.java @@ -124,34 +124,6 @@ public class RestClient { return request; } - /** - * - * @param ip - * @param port - * @param url - * @return - * @throws ClientProtocolException - * @throws IOException - */ - public static String get(String ip, int port, String url) - throws ClientProtocolException, IOException { - return executeHttp(HttpMethod.GET, ip, port, url, null).getResult(); - } - - /** - * - * @param ip - * @param port - * @param url - * @return - * @throws ClientProtocolException - * @throws IOException - */ - public static RestResponse delete(String ip, int port, String url) - throws ClientProtocolException, IOException { - return executeHttp(HttpMethod.GET, ip, port, url, null); - } - /** * * @param ip -- cgit 1.2.3-korg