d39e938b440ed74b4a379ab9de8d205473d90f0a
[vid.git] / vid-app-common / src / main / java / org / onap / vid / scheduler / SchedulerRestInterfaceIfc.java
1
2 package org.onap.vid.scheduler;
3
4 import org.springframework.stereotype.Service;
5
6 @Service
7 public interface SchedulerRestInterfaceIfc {
8
9         void initRestClient();
10
11         <T> void Get(T t, String sourceId, String path, org.onap.vid.scheduler.RestObject<T> restObject);
12
13         <T> void Delete(T t, String sourceID, String path, org.onap.vid.scheduler.RestObject<T> restObject)
14                         throws Exception;
15
16 }
17
18