BUG-5626: use Identifier instead of String
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / ClientRequestTracker.java
index af6f1d453ab59e6d4a1dc8212e9678c17eb01a73..afe680cc21b03c660c463628365f1873186c6278 100644 (file)
@@ -9,6 +9,7 @@
 package org.opendaylight.controller.cluster.raft;
 
 import akka.actor.ActorRef;
+import org.opendaylight.yangtools.concepts.Identifier;
 
 public interface ClientRequestTracker {
     /**
@@ -22,7 +23,7 @@ public interface ClientRequestTracker {
      * @return the identifier of the object that is to be replicated. For example a transaction identifier in the case
      * of a transaction
      */
-    String getIdentifier();
+    Identifier getIdentifier();
 
     /**
      *