Make GetSnapshot final and add a link
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / client / messages / GetSnapshot.java
index f1d05bfca080ee9fc2f4e1b47c88a9300d7a0d39..d51f93f7eed780e4d5991ae37dce33dadbb98fcd 100644 (file)
@@ -9,11 +9,11 @@ package org.opendaylight.controller.cluster.raft.client.messages;
 
 /**
  * Internal client message to get a snapshot of the current state based on whether or not persistence is
- * enabled. Returns a GetSnapshotReply instance.
+ * enabled. Returns a {@link GetSnapshotReply} instance.
  *
  * @author Thomas Pantelis
  */
-public class GetSnapshot {
+public final class GetSnapshot {
     public static final GetSnapshot INSTANCE = new GetSnapshot();
 
     private GetSnapshot() {