aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/onap/vid/client/SyncRestClientInterface.java
diff options
context:
space:
mode:
authorWojciech Sliwka <wojciech.sliwka@nokia.com>2018-10-29 13:45:31 +0100
committerWojciech Sliwka <wojciech.sliwka@nokia.com>2018-10-29 14:03:17 +0100
commitce1dfc634cc9258d2e2372ddc4b77128d9abd996 (patch)
tree587895d6db67dea052fc7672fe53cd23a38c5d58 /vid-app-common/src/main/java/org/onap/vid/client/SyncRestClientInterface.java
parent660da8ad71b92d0628c34d4a826610a4b9d46b01 (diff)
Add request to delete body
Issue-ID: VID-336 Change-Id: I1d619628f6251c6a62fcd1770f2e8539355c413f Signed-off-by: Wojciech Sliwka <wojciech.sliwka@nokia.com>
Diffstat (limited to 'vid-app-common/src/main/java/org/onap/vid/client/SyncRestClientInterface.java')
-rw-r--r--vid-app-common/src/main/java/org/onap/vid/client/SyncRestClientInterface.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/vid-app-common/src/main/java/org/onap/vid/client/SyncRestClientInterface.java b/vid-app-common/src/main/java/org/onap/vid/client/SyncRestClientInterface.java
index 142adde15..ae2f83862 100644
--- a/vid-app-common/src/main/java/org/onap/vid/client/SyncRestClientInterface.java
+++ b/vid-app-common/src/main/java/org/onap/vid/client/SyncRestClientInterface.java
@@ -27,6 +27,8 @@ public interface SyncRestClientInterface {
<T> HttpResponse<T> put(String url, Map<String, String> headers, Object body, Class<T> aClass);
+ <T> HttpResponse<T> delete(String url, Map<String, String> headers, Object body, Class<T> aClass);
+
<T> HttpResponse<T> delete(String url, Map<String, String> headers, Class<T> aClass);
HttpResponse<JsonNode> delete(String url, Map<String, String> headers);