Move JournalWriter.getLastIndex()
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / messages / CloseTransactionReply.java
index 666d182aaff24c9e3d7a8da86a5de061dc4e0999..a746580516e76f12fb91f6cb57291f6f135332f5 100644 (file)
@@ -5,15 +5,12 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.controller.cluster.datastore.messages;
 
-import org.opendaylight.controller.protobuff.messages.transaction.ShardTransactionMessages;
+@Deprecated(since = "9.0.0", forRemoval = true)
+public class CloseTransactionReply extends VersionedExternalizableMessage {
+    private static final long serialVersionUID = 1L;
 
-public class CloseTransactionReply implements SerializableMessage {
-  public static final Class SERIALIZABLE_CLASS = ShardTransactionMessages.CloseTransactionReply.class;
-  @Override
-  public Object toSerializable() {
-    return ShardTransactionMessages.CloseTransactionReply.newBuilder().build();
-  }
+    public CloseTransactionReply() {
+    }
 }