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

import org.onap.vid.mso.RestObject;
import org.onap.vid.mso.RestObjectWithRequestInfo;
import org.springframework.stereotype.Service;

@Service
public interface SchedulerRestInterfaceIfc {

	void initRestClient();

	<T> RestObjectWithRequestInfo Get(T t, String path, RestObject<T> restObject);

	<T> void Delete(T t, String sourceID, String path, RestObject<T> restObject);

}