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=fc6d48906a73b63f34eaf053792b2c3a0cb1c3c0;hb=000960f6451af770f5463e41e1fb6defb6f3ab27;hp=310968de950bf2f5e4ff31bcbcc3d7718ad618a8;hpb=ed693440aa741fee9b94447f8404d89b4020f616;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 310968de95..fc6d48906a 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 @@ -8,38 +8,28 @@ package org.opendaylight.controller.cluster.raft.messages; -import java.io.Serializable; - /** * Invoked by candidates to gather votes (§5.2). */ -public class RequestVote extends AbstractRaftRPC implements Serializable{ +public class RequestVote extends AbstractRaftRPC { + private static final long serialVersionUID = -6967509186297108657L; // candidate requesting vote - private String candidateId; + private final String candidateId; // index of candidate’s last log entry (§5.4) - private long lastLogIndex; + private final long lastLogIndex; // term of candidate’s last log entry (§5.4) - private long lastLogTerm; + private final long lastLogTerm; - public RequestVote(long term, String candidateId, long lastLogIndex, - long lastLogTerm) { + public RequestVote(long term, String candidateId, long lastLogIndex, long lastLogTerm) { super(term); this.candidateId = candidateId; this.lastLogIndex = lastLogIndex; this.lastLogTerm = lastLogTerm; } - // added for testing while serialize-messages=on - public RequestVote() { - } - - public long getTerm() { - return term; - } - public String getCandidateId() { return candidateId; } @@ -52,15 +42,12 @@ public class RequestVote extends AbstractRaftRPC implements Serializable{ return lastLogTerm; } - public void setCandidateId(String candidateId) { - this.candidateId = candidateId; - } - - public void setLastLogIndex(long lastLogIndex) { - this.lastLogIndex = lastLogIndex; - } - - public void setLastLogTerm(long lastLogTerm) { - this.lastLogTerm = lastLogTerm; + @Override + public String toString() { + StringBuilder builder = new StringBuilder(); + builder.append("RequestVote [term=").append(getTerm()).append(", candidateId=").append(candidateId) + .append(", lastLogIndex=").append(lastLogIndex).append(", lastLogTerm=").append(lastLogTerm) + .append("]"); + return builder.toString(); } }