Add unit test for vfc-nfvo-wfengine
[vfc/nfvo/wfengine.git] / wfenginemgrservice / src / main / java / org / onap / workflow / common / RestClient.java
index f179fe6..2eeb2fc 100644 (file)
@@ -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