Deprecate 3PC protobuff messages
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / messages / CommitTransactionReply.java
index afeba298797ea2aead2879ec98d4100bde0996cd..2b800c8346657ddf5f8ce7e005302c41856c76ff 100644 (file)
@@ -8,14 +8,33 @@
 
 package org.opendaylight.controller.cluster.datastore.messages;
 
+import org.opendaylight.controller.cluster.datastore.DataStoreVersions;
 import org.opendaylight.controller.protobuff.messages.cohort3pc.ThreePhaseCommitCohortMessages;
 
-public class CommitTransactionReply implements SerializableMessage {
+public class CommitTransactionReply extends EmptyReply {
+    private static final Object SERIALIZED_INSTANCE =
+            ThreePhaseCommitCohortMessages.CommitTransactionReply.newBuilder().build();
 
-  public static Class SERIALIZABLE_CLASS = ThreePhaseCommitCohortMessages.CommitTransactionReply.class;
+    public static final CommitTransactionReply INSTANCE = new CommitTransactionReply();
 
-  @Override
-  public Object toSerializable() {
-    return  ThreePhaseCommitCohortMessages.CommitTransactionReply.newBuilder().build();
-  }
+    public CommitTransactionReply() {
+    }
+
+    private CommitTransactionReply(short version) {
+        super(version);
+    }
+
+    @Override
+    protected Object newLegacySerializedInstance() {
+        return SERIALIZED_INSTANCE;
+    }
+
+    public static CommitTransactionReply instance(short version) {
+        return version == DataStoreVersions.CURRENT_VERSION ? INSTANCE : new CommitTransactionReply(version);
+    }
+
+    public static boolean isSerializedType(Object message) {
+        return message instanceof CommitTransactionReply ||
+                message instanceof ThreePhaseCommitCohortMessages.CommitTransactionReply;
+    }
 }