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 / CommitTransactionReply.java
index 2b800c8346657ddf5f8ce7e005302c41856c76ff..cd3a13a9f7a8d8a4948cc5d0b1d3395c45b4e44b 100644 (file)
@@ -9,12 +9,8 @@
 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 extends EmptyReply {
-    private static final Object SERIALIZED_INSTANCE =
-            ThreePhaseCommitCohortMessages.CommitTransactionReply.newBuilder().build();
 
+public class CommitTransactionReply extends VersionedExternalizableMessage {
     public static final CommitTransactionReply INSTANCE = new CommitTransactionReply();
 
     public CommitTransactionReply() {
@@ -24,17 +20,11 @@ public class CommitTransactionReply extends EmptyReply {
         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;
+        return message instanceof CommitTransactionReply;
     }
 }