Add SendInstallSnapshot javadoc
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / base / messages / SendInstallSnapshot.java
index 21c65e6037c106135f995323ae10b238029879eb..94e31846eebf1d947d483585ce19ec2b3a3f5ae7 100644 (file)
@@ -8,16 +8,22 @@
 
 package org.opendaylight.controller.cluster.raft.base.messages;
 
+import com.google.common.base.Preconditions;
+import javax.annotation.Nonnull;
 import org.opendaylight.controller.cluster.raft.Snapshot;
 
-public class SendInstallSnapshot {
+/**
+ * Internal message sent from the SnapshotManager to its associated leader. The leader is expected to apply the
+ * {@link Snapshot} to its state.
+ */
+public final class SendInstallSnapshot {
     private final Snapshot snapshot;
 
-    public SendInstallSnapshot(Snapshot snapshot) {
-        this.snapshot = snapshot;
+    public SendInstallSnapshot(@Nonnull Snapshot snapshot) {
+        this.snapshot = Preconditions.checkNotNull(snapshot);
     }
 
-    public Snapshot getSnapshot() {
+    @Nonnull public Snapshot getSnapshot() {
         return snapshot;
     }
 }