Switch identifiers to new proxies
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / concepts / TransactionIdentifier.java
index b03e2cd5c34e0a2ddf468e49c4e8b16376f35f4b..b5c652333ffec1fc842ae36a3a008cb915c192a0 100644 (file)
@@ -45,6 +45,7 @@ public final class TransactionIdentifier implements WritableIdentifier {
         }
     }
 
+    @Deprecated(since = "7.0.0", forRemoval = true)
     private static final class Proxy implements SerialForm {
         @java.io.Serial
         private static final long serialVersionUID = 1L;
@@ -139,6 +140,6 @@ public final class TransactionIdentifier implements WritableIdentifier {
 
     @java.io.Serial
     private Object writeReplace() {
-        return new Proxy(this);
+        return new TI(this);
     }
 }