From 70998db210b9969a9012fcaba79198e69b9abb5b Mon Sep 17 00:00:00 2001 From: Eylon Malin Date: Thu, 3 Oct 2019 08:17:28 +0300 Subject: remove unused interface and unused methods Issue-ID: VID-253 Signed-off-by: Eylon Malin Change-Id: I75b554a6221e9736bb8d360225c3d7e20e69a6ab --- .../java/org/onap/vid/mso/rest/RestInterface.java | 69 ---------------------- 1 file changed, 69 deletions(-) delete mode 100644 vid-app-common/src/main/java/org/onap/vid/mso/rest/RestInterface.java (limited to 'vid-app-common/src/main/java/org/onap/vid/mso/rest/RestInterface.java') diff --git a/vid-app-common/src/main/java/org/onap/vid/mso/rest/RestInterface.java b/vid-app-common/src/main/java/org/onap/vid/mso/rest/RestInterface.java deleted file mode 100644 index 2cc8e67b8..000000000 --- a/vid-app-common/src/main/java/org/onap/vid/mso/rest/RestInterface.java +++ /dev/null @@ -1,69 +0,0 @@ -/*- - * ============LICENSE_START======================================================= - * VID - * ================================================================================ - * Copyright (C) 2017 - 2019 AT&T Intellectual Property. All rights reserved. - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ============LICENSE_END========================================================= - */ - -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); - - /** - * 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); - -} -- cgit 1.2.3-korg