Bump versions 9.0.4-SNAPSHOT
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / messages / CommitTransactionReply.java
index 47adea5ea0305678de89c8b11c4c87a6ea91bedc..167124c6fe672258632e1ebe84ca36cf1b513832 100644 (file)
@@ -5,22 +5,29 @@
  * 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.datastore.messages;
 
-import org.opendaylight.controller.protobuff.messages.cohort3pc.ThreePhaseCommitCohortMessages;
-
-public class CommitTransactionReply implements SerializableMessage {
-    public static final Class<ThreePhaseCommitCohortMessages.CommitTransactionReply> SERIALIZABLE_CLASS =
-            ThreePhaseCommitCohortMessages.CommitTransactionReply.class;
+import org.opendaylight.controller.cluster.datastore.DataStoreVersions;
 
-    private static final Object SERIALIZED_INSTANCE =
-            ThreePhaseCommitCohortMessages.CommitTransactionReply.newBuilder().build();
+@Deprecated(since = "9.0.0", forRemoval = true)
+public final class CommitTransactionReply extends VersionedExternalizableMessage {
+    @java.io.Serial
+    private static final long serialVersionUID = -8342450250867395000L;
 
     public static final CommitTransactionReply INSTANCE = new CommitTransactionReply();
 
-    @Override
-    public Object toSerializable() {
-        return SERIALIZED_INSTANCE;
+    public CommitTransactionReply() {
+    }
+
+    private CommitTransactionReply(final short version) {
+        super(version);
+    }
+
+    public static CommitTransactionReply instance(final short version) {
+        return version == DataStoreVersions.CURRENT_VERSION ? INSTANCE : new CommitTransactionReply(version);
+    }
+
+    public static boolean isSerializedType(final Object message) {
+        return message instanceof CommitTransactionReply;
     }
 }