package org.onap.vid.mso.rest; import org.onap.vid.changeManagement.RequestDetailsWrapper; import org.onap.vid.mso.RestObject; import org.onap.vid.mso.RestObjectWithRequestInfo; /** * Created by pickjonathan on 26/06/2017. */ public interface RestInterface { /** * Gets the. * * @param the generic type * @param t the t * @param path the path * @param restObject the rest object * @param warpException * @throws Exception the exception */ RestObjectWithRequestInfo Get(T t, String path, RestObject restObject, boolean warpException); /** * Delete. * * @param the generic type * @param t the t * @param r the r * @param path the path * @param restObject the rest object * @throws Exception the exception */ void Delete(T t, Object r, String path, RestObject restObject); /** * Post. * * @param t the t * @param r the r * @param path the path * @param restObject the rest object * @throws Exception the exception */ void Post(String t, Object r, String path, RestObject restObject); /** * Put. * * @param the generic type * @param t the t * @param r the r * @param path the path * @param restObject the rest object * @throws Exception the exception */ void Put(T t, RequestDetailsWrapper r, String path, RestObject restObject); RestObject GetForObject(String path, Class clazz); }