Make Netty-3 dependency optional
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / messages / RequestVoteReply.java
index 7acafecfbbd3c001a811c7377327331bb31977e1..01fd9abe2e1266572122e155630e4eca82cfb4d1 100644 (file)
@@ -5,27 +5,31 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.controller.cluster.raft.messages;
 
-public class RequestVoteReply {
-
-    // currentTerm, for candidate to update itself
-    private final long term;
+public final class RequestVoteReply extends AbstractRaftRPC {
+    @java.io.Serial
+    private static final long serialVersionUID = 8427899326488775660L;
 
-    // true means candidate received vot
+    // true means candidate received vote
     private final boolean voteGranted;
 
-    public RequestVoteReply(long term, boolean voteGranted) {
-        this.term = term;
+    public RequestVoteReply(final long term, final boolean voteGranted) {
+        super(term);
         this.voteGranted = voteGranted;
     }
 
-    public long getTerm() {
-        return term;
-    }
-
     public boolean isVoteGranted() {
         return voteGranted;
     }
+
+    @Override
+    public String toString() {
+        return "RequestVoteReply [term=" + getTerm() + ", voteGranted=" + voteGranted + "]";
+    }
+
+    @Override
+    Object writeReplace() {
+        return new VR(this);
+    }
 }