BUG-5280: remove support for talking to pre-Boron clients
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / messages / AbortTransactionReply.java
index 84234e58075203a4adb39c46a961718509464dfb..3b58458e1a3dca93fd37ba97d01a05a64c26cc65 100644 (file)
@@ -8,5 +8,23 @@
 
 package org.opendaylight.controller.cluster.datastore.messages;
 
-public class AbortTransactionReply {
+import org.opendaylight.controller.cluster.datastore.DataStoreVersions;
+
+public class AbortTransactionReply extends VersionedExternalizableMessage {
+    private static final AbortTransactionReply INSTANCE = new AbortTransactionReply();
+
+    public AbortTransactionReply() {
+    }
+
+    private AbortTransactionReply(short version) {
+        super(version);
+    }
+
+    public static AbortTransactionReply instance(short version) {
+        return version == DataStoreVersions.CURRENT_VERSION ? INSTANCE : new AbortTransactionReply(version);
+    }
+
+    public static boolean isSerializedType(Object message) {
+        return message instanceof AbortTransactionReply;
+    }
 }