Remove legacy raft message Proxy constructors
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / messages / InstallSnapshotReply.java
index 693fe7e7b8d5eb96d046eebb92e446ff9acf0b60..1579ba2ee45d54fe549d581f3c66faca53a0ee83 100644 (file)
@@ -50,10 +50,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 +66,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 +81,7 @@ public final class InstallSnapshotReply extends AbstractRaftRPC {
             installSnapshotReply = new InstallSnapshotReply(term, followerId, chunkIndex, success);
         }
 
+        @java.io.Serial
         private Object readResolve() {
             return installSnapshotReply;
         }