Fix javadocs and enable doclint
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / policy / RaftPolicy.java
index c535c2299d5cbbefa1d128f7eb96ab8f725034f7..183e3400e6379db1e7aa66407cafc2c4a323301e 100644 (file)
@@ -13,12 +13,12 @@ package org.opendaylight.controller.cluster.raft.policy;
  * we may want to be able to determine which Raft replica should become the leader - with Raft elections are
  * randomized so it is not possible to specify which replica should be the leader. The ability to specify
  * the leader would be quite useful when testing a raft cluster.
- * <p/>
+ *
+ * <p>
  * Similarly we may want to customize when exactly we apply a modification to the state - with Raft a modification
  * is only applied to the state when the modification is replicated to a majority of the replicas. The ability to
  * apply a modification to the state before consensus would be useful in scenarios where you have only 2 nodes
  * in a Raft cluster and one of them is down but you still want the RaftActor to apply a modification to the state.
- *
  */
 public interface RaftPolicy {
     /**