AT&T 1712 and 1802 release code
[so.git] / common / src / main / java / org / openecomp / mso / client / sdno / SDNOValidator.java
 package org.openecomp.mso.client.sdno;
 
 import java.io.IOException;
+import java.util.UUID;
 
 public interface SDNOValidator {
-       
+
        /**
         * Issues a health diagnostic request for a given vnf to SDN-O
         * 
@@ -32,6 +33,6 @@ public interface SDNOValidator {
         * @throws IOException
         * @throws Exception
         */
-       public void healthDiagnostic(String vnfId, String requestingUserId) throws IOException, Exception;
+       public void healthDiagnostic(String vnfId, UUID uuid, String requestingUserId) throws IOException, Exception;
 
 }