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=a658ab7d810685c53b90ed6955ce5df5273b1b10;hb=4a3ba6c6695119ba041f358fca281b582c7665f1;hpb=ed693440aa741fee9b94447f8404d89b4020f616 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 a658ab7d81..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,26 +5,69 @@ * 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.Serializable; +import java.io.Externalizable; +import java.io.IOException; +import java.io.ObjectInput; +import java.io.ObjectOutput; -public class RequestVoteReply extends AbstractRaftRPC implements Serializable { +public final class RequestVoteReply extends AbstractRaftRPC { + 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) { + 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 Proxy(this); + } + + private static class Proxy implements Externalizable { + private static final long serialVersionUID = 1L; + + private RequestVoteReply requestVoteReply; + + // checkstyle flags the public modifier as redundant which really doesn't make sense since it clearly isn't + // redundant. It is explicitly needed for Java serialization to be able to create instances via reflection. + @SuppressWarnings("checkstyle:RedundantModifier") + public Proxy() { + } + + Proxy(final RequestVoteReply requestVoteReply) { + this.requestVoteReply = requestVoteReply; + } + + @Override + public void writeExternal(final ObjectOutput out) throws IOException { + out.writeLong(requestVoteReply.getTerm()); + out.writeBoolean(requestVoteReply.voteGranted); + } + + @Override + public void readExternal(final ObjectInput in) throws IOException { + long term = in.readLong(); + boolean voteGranted = in.readBoolean(); + + requestVoteReply = new RequestVoteReply(term, voteGranted); + } + + private Object readResolve() { + return requestVoteReply; + } + } }