aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/onap/vid/scheduler/SchedulerRestInterfaceIfc.java
blob: d39e938b440ed74b4a379ab9de8d205473d90f0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.onap.vid.scheduler;

import org.springframework.stereotype.Service;

@Service
public interface SchedulerRestInterfaceIfc {

	void initRestClient();

	<T> void Get(T t, String sourceId, String path, org.onap.vid.scheduler.RestObject<T> restObject);

	<T> void Delete(T t, String sourceID, String path, org.onap.vid.scheduler.RestObject<T> restObject)
			throws Exception;

}