Switch to ARGON raft version
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / messages / RequestVoteReply.java
index 9b7a2f34566342ecd86a52aec1e96ef783f4b9ef..7bfb7b68f0e07dda69f809666eb0f28ffc86875c 100644 (file)
@@ -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,11 +32,14 @@ public final class RequestVoteReply extends AbstractRaftRPC {
         return "RequestVoteReply [term=" + getTerm() + ", voteGranted=" + voteGranted + "]";
     }
 
-    private Object writeReplace() {
-        return new Proxy(this);
+    @Override
+    Object writeReplace() {
+        return new VR(this);
     }
 
+    @Deprecated(since = "7.0.0", forRemoval = true)
     private static class Proxy implements Externalizable {
+        @java.io.Serial
         private static final long serialVersionUID = 1L;
 
         private RequestVoteReply requestVoteReply;
@@ -48,24 +50,25 @@ 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();
 
             requestVoteReply = new RequestVoteReply(term, voteGranted);
         }
 
+        @java.io.Serial
         private Object readResolve() {
             return requestVoteReply;
         }