Issue-Id: SO-298
Change-Id: I2207a65884fc75c8b3a09467fa311718878331bd
Signed-off-by: Benjamin, Max (mb388a) <mb388a@us.att.com>
import java.io.IOException;
-@FunctionalInterface
public interface SDNOValidator {
- void healthDiagnostic(String vnfName, String uuid) throws IOException, Exception;
+ /**
+ * Issues a health diagnostic request for a given vnf to SDN-O
+ *
+ * @param vnfName
+ * @param uuid
+ * @throws IOException
+ * @throws Exception
+ */
+ public void healthDiagnostic(String vnfName, String uuid) throws IOException, Exception;
}