Add new cds-access-api proxies
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / commands / ExistsTransactionSuccess.java
index 3110002e4fe91842c9f049f77466e7d900268d57..ca5377051a4d5db83b969500d57b4eb873d29542 100644 (file)
@@ -8,7 +8,9 @@
 package org.opendaylight.controller.cluster.access.commands;
 
 import com.google.common.base.MoreObjects.ToStringHelper;
-import java.io.Serial;
+import java.io.IOException;
+import java.io.ObjectInput;
+import java.io.ObjectOutput;
 import org.opendaylight.controller.cluster.access.ABIVersion;
 import org.opendaylight.controller.cluster.access.concepts.TransactionIdentifier;
 
@@ -17,11 +19,29 @@ import org.opendaylight.controller.cluster.access.concepts.TransactionIdentifier
  * {@link #getExists()}.
  */
 public final class ExistsTransactionSuccess extends TransactionSuccess<ExistsTransactionSuccess> {
-    @Serial
+    interface SerialForm extends TransactionSuccess.SerialForm<ExistsTransactionSuccess> {
+        @Override
+        default ExistsTransactionSuccess readExternal(final ObjectInput in, final TransactionIdentifier target,
+                final long sequence) throws IOException {
+            return new ExistsTransactionSuccess(target, sequence, in.readBoolean());
+        }
+
+        @Override
+        default void writeExternal(final ObjectOutput out, final ExistsTransactionSuccess msg) throws IOException {
+            out.writeBoolean(msg.getExists());
+        }
+    }
+
+    @java.io.Serial
     private static final long serialVersionUID = 1L;
 
     private final boolean exists;
 
+    private ExistsTransactionSuccess(final ExistsTransactionSuccess success, final ABIVersion version) {
+        super(success, version);
+        exists = success.exists;
+    }
+
     public ExistsTransactionSuccess(final TransactionIdentifier target, final long sequence, final boolean exists) {
         super(target, sequence);
         this.exists = exists;
@@ -32,13 +52,13 @@ public final class ExistsTransactionSuccess extends TransactionSuccess<ExistsTra
     }
 
     @Override
-    protected ExistsTransactionSuccessProxyV1 externalizableProxy(final ABIVersion version) {
-        return new ExistsTransactionSuccessProxyV1(this);
+    protected SerialForm externalizableProxy(final ABIVersion version) {
+        return ABIVersion.MAGNESIUM.lt(version) ? new ETS(this) : new ExistsTransactionSuccessProxyV1(this);
     }
 
     @Override
     protected ExistsTransactionSuccess cloneAsVersion(final ABIVersion version) {
-        return this;
+        return new ExistsTransactionSuccess(this, version);
     }
 
     @Override