aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/onap/vid/policy/PolicyRestInterfaceIfc.java
diff options
context:
space:
mode:
Diffstat (limited to 'vid-app-common/src/main/java/org/onap/vid/policy/PolicyRestInterfaceIfc.java')
-rw-r--r--vid-app-common/src/main/java/org/onap/vid/policy/PolicyRestInterfaceIfc.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/vid-app-common/src/main/java/org/onap/vid/policy/PolicyRestInterfaceIfc.java b/vid-app-common/src/main/java/org/onap/vid/policy/PolicyRestInterfaceIfc.java
index 59b0ad3dc..61108fc53 100644
--- a/vid-app-common/src/main/java/org/onap/vid/policy/PolicyRestInterfaceIfc.java
+++ b/vid-app-common/src/main/java/org/onap/vid/policy/PolicyRestInterfaceIfc.java
@@ -20,7 +20,7 @@ public interface PolicyRestInterfaceIfc {
* @param restObject the rest object
* @throws Exception the exception
*/
- public <T> void Get (T t, String sourceId, String path, RestObject<T> restObject ) throws Exception;
+ public <T> void Get (T t, String sourceId, String path, RestObject<T> restObject );
/**
* Delete.
@@ -33,7 +33,7 @@ public interface PolicyRestInterfaceIfc {
* @param restObject the rest object
* @throws Exception the exception
*/
- public <T> void Delete(T t, RequestDetails r, String sourceID, String path, RestObject<T> restObject) throws Exception;
+ public <T> void Delete(T t, RequestDetails r, String sourceID, String path, RestObject<T> restObject);
/**
* Post.
@@ -46,7 +46,7 @@ public interface PolicyRestInterfaceIfc {
* @param restObject the rest object
* @throws Exception the exception
*/
- public <T> void Post(T t, JSONObject r, String sourceID, String path, RestObject<T> restObject) throws Exception;
+ public <T> void Post(T t, JSONObject r, String sourceID, String path, RestObject<T> restObject);
/***
* Log request.