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%2FRequestVote.java;h=2b33a12950620accf369300b23074710c8b5b3c2;hb=HEAD;hp=981da17ce143389b75e8303b4bde9fd9fd582ad1;hpb=fe4049d34de103016d11f3a9050853c6380646d3;p=controller.git diff --git a/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/messages/RequestVote.java b/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/messages/RequestVote.java index 981da17ce1..2b33a12950 100644 --- a/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/messages/RequestVote.java +++ b/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/messages/RequestVote.java @@ -5,13 +5,14 @@ * 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; /** * Invoked by candidates to gather votes (§5.2). */ -public class RequestVote extends AbstractRaftRPC{ +public final class RequestVote extends AbstractRaftRPC { + @java.io.Serial + private static final long serialVersionUID = -6967509186297108657L; // candidate requesting vote private final String candidateId; @@ -22,18 +23,13 @@ public class RequestVote extends AbstractRaftRPC{ // term of candidate’s last log entry (§5.4) private final long lastLogTerm; - public RequestVote(long term, String candidateId, long lastLogIndex, - long lastLogTerm) { + public RequestVote(final long term, final String candidateId, final long lastLogIndex, final long lastLogTerm) { super(term); this.candidateId = candidateId; this.lastLogIndex = lastLogIndex; this.lastLogTerm = lastLogTerm; } - public long getTerm() { - return term; - } - public String getCandidateId() { return candidateId; } @@ -45,4 +41,18 @@ public class RequestVote extends AbstractRaftRPC{ public long getLastLogTerm() { return lastLogTerm; } + + @Override + public String toString() { + return "RequestVote [term=" + getTerm() + + ", candidateId=" + candidateId + + ", lastLogIndex=" + lastLogIndex + + ", lastLogTerm=" + lastLogTerm + + "]"; + } + + @Override + Object writeReplace() { + return new RV(this); + } }