Separate out raft-journal
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / messages / UnInitializedFollowerSnapshotReply.java
index 4d66fa6d4d3d0fbf4dac4bf006e2f259c63e614e..ff11ca0317ce9f8adae08ba2751bd4609bb8603e 100644 (file)
@@ -7,15 +7,17 @@
  */
 package org.opendaylight.controller.cluster.raft.messages;
 
+import akka.dispatch.ControlMessage;
+
 /**
- * Local message sent to self on receiving InstallSnapshotReply from a follower, this message indicates that
- * the catchup of the follower is done succesfully during AddServer scenario
+ * Local message sent to self on receiving the InstallSnapshotReply from a follower indicating that
+ * the catch up of the follower has completed successfully for an AddServer operation.
  */
-public class  UnInitializedFollowerSnapshotReply {
+public class UnInitializedFollowerSnapshotReply implements ControlMessage {
     private final String followerId;
 
-    public UnInitializedFollowerSnapshotReply(String followerId){
-       this.followerId = followerId;
+    public UnInitializedFollowerSnapshotReply(String followerId) {
+        this.followerId = followerId;
     }
 
     public String getFollowerId() {