Annotate AbstractRaftRPC with java.io.Serial
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / messages / InstallSnapshotReply.java
index 693fe7e7b8d5eb96d046eebb92e446ff9acf0b60..978ae8006d1716a8a868d7f704d4eaeae549cc2c 100644 (file)
@@ -13,6 +13,7 @@ import java.io.ObjectInput;
 import java.io.ObjectOutput;
 
 public final class InstallSnapshotReply extends AbstractRaftRPC {
+    @java.io.Serial
     private static final long serialVersionUID = 642227896390779503L;
 
     // The followerId - this will be used to figure out which follower is
@@ -50,10 +51,12 @@ public final class InstallSnapshotReply extends AbstractRaftRPC {
 
     @Override
     Object writeReplace() {
-        return new Proxy(this);
+        return new IR(this);
     }
 
+    @Deprecated(since = "7.0.0", forRemoval = true)
     private static class Proxy implements Externalizable {
+        @java.io.Serial
         private static final long serialVersionUID = 1L;
 
         private InstallSnapshotReply installSnapshotReply;
@@ -64,16 +67,9 @@ public final class InstallSnapshotReply extends AbstractRaftRPC {
         public Proxy() {
         }
 
-        Proxy(final InstallSnapshotReply installSnapshotReply) {
-            this.installSnapshotReply = installSnapshotReply;
-        }
-
         @Override
-        public void writeExternal(final ObjectOutput out) throws IOException {
-            out.writeLong(installSnapshotReply.getTerm());
-            out.writeObject(installSnapshotReply.followerId);
-            out.writeInt(installSnapshotReply.chunkIndex);
-            out.writeBoolean(installSnapshotReply.success);
+        public void writeExternal(final ObjectOutput out) {
+            throw new UnsupportedOperationException();
         }
 
         @Override
@@ -86,6 +82,7 @@ public final class InstallSnapshotReply extends AbstractRaftRPC {
             installSnapshotReply = new InstallSnapshotReply(term, followerId, chunkIndex, success);
         }
 
+        @java.io.Serial
         private Object readResolve() {
             return installSnapshotReply;
         }