appc-network-client-provider sonar fixes part 2
[appc.git] / appc-outbound / appc-network-inventory-client / provider / src / main / java / org / onap / appc / instar / interfaces / RestClientInterface.java
index 37c8dbe..bac3bfb 100644 (file)
 
 package org.onap.appc.instar.interfaces;
 
+import java.io.IOException;
+import org.onap.appc.instar.interfaceImpl.InstarResponseException;
+
+@FunctionalInterface
 public interface RestClientInterface {
 
-    public String sendRequest(String operation) throws Exception;
+    String sendRequest(String operation) throws InstarResponseException, IOException;
 }