X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-akka-raft%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fraft%2Fmessages%2FUnInitializedFollowerSnapshotReply.java;h=ff11ca0317ce9f8adae08ba2751bd4609bb8603e;hb=HEAD;hp=4d66fa6d4d3d0fbf4dac4bf006e2f259c63e614e;hpb=a3adcd6cd7659b30e5115efe86440f7a2123ec20;p=controller.git diff --git a/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/messages/UnInitializedFollowerSnapshotReply.java b/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/messages/UnInitializedFollowerSnapshotReply.java index 4d66fa6d4d..ff11ca0317 100644 --- a/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/messages/UnInitializedFollowerSnapshotReply.java +++ b/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/messages/UnInitializedFollowerSnapshotReply.java @@ -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() {