Use YangInstanceIdentifier.EMPTY
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / messages / CommitTransactionReply.java
index 3d4a168450bbf4ef07b23a1071e7a6678fba3c13..b50bbcc1f34fbe0c9d4a00af9689ec7415ba3cce 100644 (file)
@@ -8,14 +8,35 @@
 
 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 static final Class<ThreePhaseCommitCohortMessages.CommitTransactionReply> SERIALIZABLE_CLASS =
-            ThreePhaseCommitCohortMessages.CommitTransactionReply.class;
+public class CommitTransactionReply extends VersionedExternalizableMessage {
+    @Deprecated
+    private static final Object SERIALIZED_INSTANCE =
+            ThreePhaseCommitCohortMessages.CommitTransactionReply.newBuilder().build();
 
+    public static final CommitTransactionReply INSTANCE = new CommitTransactionReply();
+
+    public CommitTransactionReply() {
+    }
+
+    private CommitTransactionReply(short version) {
+        super(version);
+    }
+
+    @Deprecated
     @Override
-    public Object toSerializable() {
-        return ThreePhaseCommitCohortMessages.CommitTransactionReply.newBuilder().build();
+    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;
     }
 }