From 0d422d4cc6a1580d38216ccf5a51a2acba0a884e Mon Sep 17 00:00:00 2001 From: Eylon Malin Date: Wed, 2 Oct 2019 10:55:06 +0300 Subject: enable mso rest client send DELETE request with body config SUPPRESS_HTTP_COMPLIANCE_VALIDATION directly from RestMsoImplementation, instead of relaying on the jersey client configuration. Also remove Delete method from RestMsoImplementation since it's not used in production code. Issue-ID: VID-657 Signed-off-by: Eylon Malin Change-Id: If30d60c6aca9b7d9ab3e6d07b13c1246ed3d67e3 --- .../src/main/java/org/onap/vid/mso/rest/RestInterface.java | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'vid-app-common/src/main/java/org/onap/vid/mso/rest/RestInterface.java') diff --git a/vid-app-common/src/main/java/org/onap/vid/mso/rest/RestInterface.java b/vid-app-common/src/main/java/org/onap/vid/mso/rest/RestInterface.java index 3a0d8fd8e..2cc8e67b8 100644 --- a/vid-app-common/src/main/java/org/onap/vid/mso/rest/RestInterface.java +++ b/vid-app-common/src/main/java/org/onap/vid/mso/rest/RestInterface.java @@ -41,18 +41,6 @@ public interface RestInterface { */ RestObjectWithRequestInfo Get(T t, String path, RestObject restObject, boolean warpException); - /** - * Delete. - * - * @param the generic type - * @param t the t - * @param r the r - * @param path the path - * @param restObject the rest object - * @throws Exception the exception - */ - void Delete(T t, Object r, String path, RestObject restObject); - /** * Post. * -- cgit 1.2.3-korg