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=72d1496951ef79aed8d7fba07fb963a8813793cd;hb=refs%2Fchanges%2F14%2F103514%2F9;hp=d5a581aab8cdbe1d78f29da9b31ccf52025d6912;hpb=81674d6fd50b419b868d0851062e23f34b34557d;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 d5a581aab8..72d1496951 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,7 +5,6 @@ * 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; import java.io.Externalizable; @@ -16,7 +15,7 @@ import java.io.ObjectOutput; /** * Invoked by candidates to gather votes (§5.2). */ -public class RequestVote extends AbstractRaftRPC { +public final class RequestVote extends AbstractRaftRPC { private static final long serialVersionUID = -6967509186297108657L; // candidate requesting vote @@ -28,7 +27,7 @@ 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; @@ -56,11 +55,14 @@ public class RequestVote extends AbstractRaftRPC { + "]"; } - private Object writeReplace() { - return new Proxy(this); + @Override + Object writeReplace() { + return new RV(this); } + @Deprecated(since = "7.0.0", forRemoval = true) private static class Proxy implements Externalizable { + @java.io.Serial private static final long serialVersionUID = 1L; private RequestVote requestVote; @@ -71,12 +73,12 @@ public class RequestVote extends AbstractRaftRPC { public Proxy() { } - Proxy(RequestVote requestVote) { + Proxy(final RequestVote requestVote) { this.requestVote = requestVote; } @Override - public void writeExternal(ObjectOutput out) throws IOException { + public void writeExternal(final ObjectOutput out) throws IOException { out.writeLong(requestVote.getTerm()); out.writeObject(requestVote.candidateId); out.writeLong(requestVote.lastLogIndex); @@ -84,7 +86,7 @@ public class RequestVote extends AbstractRaftRPC { } @Override - public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { + public void readExternal(final ObjectInput in) throws IOException, ClassNotFoundException { long term = in.readLong(); String candidateId = (String) in.readObject(); long lastLogIndex = in.readLong(); @@ -93,6 +95,7 @@ public class RequestVote extends AbstractRaftRPC { requestVote = new RequestVote(term, candidateId, lastLogIndex, lastLogTerm); } + @java.io.Serial private Object readResolve() { return requestVote; }