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 / CloseTransactionReply.java
index 1c47a1827f11f86f26ee13c2d81237adcdd55f6b..0e21b578ca91f59cc814f62f7c1ffb7d02e0c028 100644 (file)
@@ -8,19 +8,9 @@
 
 package org.opendaylight.controller.cluster.datastore.messages;
 
-import org.opendaylight.controller.protobuff.messages.transaction.ShardTransactionMessages;
+public class CloseTransactionReply extends VersionedExternalizableMessage {
+    private static final long serialVersionUID = 1L;
 
-public class CloseTransactionReply implements SerializableMessage {
-    public static final Class<ShardTransactionMessages.CloseTransactionReply> SERIALIZABLE_CLASS =
-            ShardTransactionMessages.CloseTransactionReply.class;
-
-    private static final Object SERIALIZED_INSTANCE =
-            ShardTransactionMessages.CloseTransactionReply.newBuilder().build();
-
-    public static final CloseTransactionReply INSTANCE = new CloseTransactionReply();
-
-    @Override
-    public Object toSerializable() {
-        return SERIALIZED_INSTANCE;
+    public CloseTransactionReply() {
     }
 }