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 4972b348ff4d98d8e0d1eb2b1135ccf53f837768..afe680cc21b03c660c463628365f1873186c6278 100644 (file)
@@ -9,25 +9,25 @@
 package org.opendaylight.controller.cluster.raft;
 
 import akka.actor.ActorRef;
+import org.opendaylight.yangtools.concepts.Identifier;
 
 public interface ClientRequestTracker {
     /**
-     * The client actor who is waiting for a response
      *
-     * @return
+     * @return the client actor that should be sent a response when consensus is achieved
      */
     ActorRef getClientActor();
 
     /**
      *
-     * @return
+     * @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();
 
     /**
-     * The index of the log entry which needs to be replicated
      *
-     * @return
+     * @return the index of the log entry that is to be replicated
      */
     long getIndex();