X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=ecomp-portal-BE-common%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Fportalapp%2Fportal%2Fscheduler%2FSchedulerRestInterfaceIfc.java;h=8d37a125d6bd41a86d47d0caa46f41724e78cd01;hb=b382121ad0475b9d730c81d47f93f0db8d50c0f0;hp=c49dd1d1321dda5c69a81eb487713a28cc9d1339;hpb=73248465fc2867a3dd1a6494afb6b0774c9028f2;p=portal.git diff --git a/ecomp-portal-BE-common/src/main/java/org/onap/portalapp/portal/scheduler/SchedulerRestInterfaceIfc.java b/ecomp-portal-BE-common/src/main/java/org/onap/portalapp/portal/scheduler/SchedulerRestInterfaceIfc.java index c49dd1d1..8d37a125 100644 --- a/ecomp-portal-BE-common/src/main/java/org/onap/portalapp/portal/scheduler/SchedulerRestInterfaceIfc.java +++ b/ecomp-portal-BE-common/src/main/java/org/onap/portalapp/portal/scheduler/SchedulerRestInterfaceIfc.java @@ -45,14 +45,14 @@ import org.springframework.stereotype.Service; @Service public interface SchedulerRestInterfaceIfc { - public void initRestClient(); + void initRestClient(); - public void Get(T t, String sourceId, String path, org.onap.portalapp.portal.scheduler.restobjects.RestObject restObject ) throws Exception; + void Get(T t, String sourceId, String path, org.onap.portalapp.portal.scheduler.restobjects.RestObject restObject ) throws Exception; - public void Delete(T t, JSONObject requestDetails, String sourceID, String path, RestObject restObject) + void Delete(T t, JSONObject requestDetails, String sourceID, String path, RestObject restObject) throws Exception; - public void Post(T t, JSONObject r, String path, RestObject restObject) throws Exception; + void Post(T t, JSONObject r, String path, RestObject restObject) throws Exception; - public void logRequest(JSONObject requestDetails); -} \ No newline at end of file + void logRequest(JSONObject requestDetails); +}