aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/openecomp/vid/scheduler/SchedulerRestInterfaceIfc.java
diff options
context:
space:
mode:
Diffstat (limited to 'vid-app-common/src/main/java/org/openecomp/vid/scheduler/SchedulerRestInterfaceIfc.java')
-rw-r--r--vid-app-common/src/main/java/org/openecomp/vid/scheduler/SchedulerRestInterfaceIfc.java21
1 files changed, 0 insertions, 21 deletions
diff --git a/vid-app-common/src/main/java/org/openecomp/vid/scheduler/SchedulerRestInterfaceIfc.java b/vid-app-common/src/main/java/org/openecomp/vid/scheduler/SchedulerRestInterfaceIfc.java
deleted file mode 100644
index 839ab348d..000000000
--- a/vid-app-common/src/main/java/org/openecomp/vid/scheduler/SchedulerRestInterfaceIfc.java
+++ /dev/null
@@ -1,21 +0,0 @@
-
-package org.openecomp.vid.scheduler;
-
-import org.json.simple.JSONObject;
-import org.openecomp.vid.scheduler.RestObjects.RestObject;
-import org.springframework.stereotype.Service;
-
-@Service
-public interface SchedulerRestInterfaceIfc {
-
- public void initRestClient();
-
- public <T> void Get (T t, String sourceId, String path, org.openecomp.vid.scheduler.RestObject<T> restObject ) throws Exception;
-
- public <T> void Delete(T t, JSONObject requestDetails, String sourceID, String path, RestObject<T> restObject)
- throws Exception;
-
- public <T> void Post(T t, JSONObject r, String path, RestObject<T> restObject) throws Exception;
-
- public void logRequest(JSONObject requestDetails);
-} \ No newline at end of file