Fixup comparison formatting
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / ClientRequestTracker.java
index 4972b348ff4d98d8e0d1eb2b1135ccf53f837768..0f14844d5666e5ee6f73f3d7cb005b607c41b3a7 100644 (file)
@@ -9,25 +9,28 @@
 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
+     * Returns the client actor that should be sent a response when consensus is achieved.
      *
-     * @return
+     * @return the client actor
      */
     ActorRef getClientActor();
 
     /**
+     * Returns the identifier of the object that is to be replicated. For example a transaction identifier in the case
+     * of a transaction.
      *
-     * @return
+     * @return the identifier
      */
-    String getIdentifier();
+    Identifier getIdentifier();
 
     /**
-     * The index of the log entry which needs to be replicated
+     * Returns the index of the log entry that is to be replicated.
      *
-     * @return
+     * @return the index
      */
     long getIndex();