BUG 2412 - restconf @GET getModule(identifier,uri) method migration
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / messages / DeleteDataReply.java
index a3c73056858d5a8d339151d57fe2dd4047649e4f..0c6ff0e68d69d05e56871d3e197795387310232d 100644 (file)
@@ -8,5 +8,16 @@
 
 package org.opendaylight.controller.cluster.datastore.messages;
 
-public class DeleteDataReply {
+import org.opendaylight.controller.protobuff.messages.transaction.ShardTransactionMessages;
+
+public class DeleteDataReply extends EmptyReply {
+
+    private static final Object LEGACY_SERIALIZED_INSTANCE =
+            ShardTransactionMessages.DeleteDataReply.newBuilder().build();
+
+    public static final DeleteDataReply INSTANCE = new DeleteDataReply();
+
+    public DeleteDataReply() {
+        super(LEGACY_SERIALIZED_INSTANCE);
+    }
 }