package org.onap.vid.scheduler; import org.json.simple.JSONObject; import org.onap.vid.scheduler.RestObjects.RestObject; import org.springframework.stereotype.Service; @Service public interface SchedulerRestInterfaceIfc { public void initRestClient(); public void Get (T t, String sourceId, String path, org.onap.vid.scheduler.RestObject restObject ) throws Exception; public void Delete(T t, String sourceID, String path, org.onap.vid.scheduler.RestObject restObject) throws Exception; public void Post(T t, JSONObject r, String path, RestObject restObject) throws Exception; public void logRequest(JSONObject requestDetails); }