added javadoc comments to SDNOValidator interface 75/21675/1
authorBenjamin, Max (mb388a) <mb388a@us.att.com>
Wed, 1 Nov 2017 18:25:58 +0000 (14:25 -0400)
committerBenjamin, Max (mb388a) <mb388a@us.att.com>
Wed, 1 Nov 2017 18:25:58 +0000 (14:25 -0400)
Issue-Id: SO-298
Change-Id: I2207a65884fc75c8b3a09467fa311718878331bd
Signed-off-by: Benjamin, Max (mb388a) <mb388a@us.att.com>
bpmn/MSOCommonBPMN/src/main/java/org/openecomp/mso/client/sdno/SDNOValidator.java

index 950dc7b..eb18e10 100644 (file)
@@ -22,9 +22,16 @@ package org.openecomp.mso.client.sdno;
 
 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;
 
 }