X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-akka-raft%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fraft%2Fmessages%2FRequestVoteReply.java;h=2554c17fd85fd1c7dcfc04c824079c1510ed98ee;hp=9b7a2f34566342ecd86a52aec1e96ef783f4b9ef;hb=4a3ba6c6695119ba041f358fca281b582c7665f1;hpb=f765d281103876eb604f5aba83fc98c591259ec9 diff --git a/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/messages/RequestVoteReply.java b/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/messages/RequestVoteReply.java index 9b7a2f3456..2554c17fd8 100644 --- a/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/messages/RequestVoteReply.java +++ b/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/messages/RequestVoteReply.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; @@ -19,7 +18,7 @@ public final class RequestVoteReply extends AbstractRaftRPC { // true means candidate received vote private final boolean voteGranted; - public RequestVoteReply(long term, boolean voteGranted) { + public RequestVoteReply(final long term, final boolean voteGranted) { super(term); this.voteGranted = voteGranted; } @@ -33,7 +32,8 @@ public final class RequestVoteReply extends AbstractRaftRPC { return "RequestVoteReply [term=" + getTerm() + ", voteGranted=" + voteGranted + "]"; } - private Object writeReplace() { + @Override + Object writeReplace() { return new Proxy(this); } @@ -48,18 +48,18 @@ public final class RequestVoteReply extends AbstractRaftRPC { public Proxy() { } - Proxy(RequestVoteReply requestVoteReply) { + Proxy(final RequestVoteReply requestVoteReply) { this.requestVoteReply = requestVoteReply; } @Override - public void writeExternal(ObjectOutput out) throws IOException { + public void writeExternal(final ObjectOutput out) throws IOException { out.writeLong(requestVoteReply.getTerm()); out.writeBoolean(requestVoteReply.voteGranted); } @Override - public void readExternal(ObjectInput in) throws IOException { + public void readExternal(final ObjectInput in) throws IOException { long term = in.readLong(); boolean voteGranted = in.readBoolean();