Fix warnings and javadocs in sal-akka-raft
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / ClientRequestTracker.java
index afe680cc21b03c660c463628365f1873186c6278..0f14844d5666e5ee6f73f3d7cb005b607c41b3a7 100644 (file)
@@ -13,21 +13,24 @@ import org.opendaylight.yangtools.concepts.Identifier;
 
 public interface ClientRequestTracker {
     /**
+     * Returns the client actor that should be sent a response when consensus is achieved.
      *
-     * @return the client actor that should be sent a response when consensus is achieved
+     * @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 the identifier of the object that is to be replicated. For example a transaction identifier in the case
-     * of a transaction
+     * @return the identifier
      */
     Identifier getIdentifier();
 
     /**
+     * Returns the index of the log entry that is to be replicated.
      *
-     * @return the index of the log entry that is to be replicated
+     * @return the index
      */
     long getIndex();