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 13:45:31 +0100
commite4c1493b35c4a3f3ee2232eccdf8e254ede74a85 (patch)
tree147e8ba6a14e4e6ba8174c340f59e0b91d9fd154 /vid-app-common/src/main/java/org/onap/vid/client/SyncRestClientInterface.java
parent422fd82d89d6a7e004f545cb8dd3a5d94f7acb29 (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);