Merge dev/fluorine work across to master
[unimgr.git] / impl / src / main / java / org / opendaylight / unimgr / mef / nrp / api / ActivationDriverRepoService.java
index b98f11c04f90512491f84676e2323b314c476136..7650043ae3fe714ff45a7b52020def19a3854b0e 100644 (file)
@@ -10,8 +10,6 @@ package org.opendaylight.unimgr.mef.nrp.api;
 
 import java.util.Optional;
 
-import org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.tapi.common.rev171113.Uuid;
-
 /**
  * This interface is used to request an ActivationDriver for a given MEF service fragment.
  */
@@ -19,10 +17,10 @@ public interface ActivationDriverRepoService {
 
     /**
      * Get driver by universal id.
-     * @param uuid driver uuid
+     * @param activationDriverId driver id
      * @return activation driver
      * @throws ActivationDriverAmbiguousException when multiple drivers declare they can configure port
      * @throws ActivationDriverNotFoundException when no driver found for port
      */
-    Optional<ActivationDriver> getDriver(Uuid uuid);
+    Optional<ActivationDriver> getDriver(String activationDriverId);
 }
\ No newline at end of file