Bug 7521: Convert byte[] to ShardManagerSnapshot in DatastoreSnapshot
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / messages / CloseDataChangeListenerRegistrationReply.java
index faf73c87ebe4ef6bdb8926ccfc3742ecc86d9ebe..430202af42e39d17d86b5a812a9cfcc726ea9900 100644 (file)
@@ -8,14 +8,11 @@
 
 package org.opendaylight.controller.cluster.datastore.messages;
 
-import org.opendaylight.controller.protobuff.messages.registration.ListenerRegistrationMessages;
 
-public class CloseDataChangeListenerRegistrationReply implements SerializableMessage{
-  public static Class SERIALIZABLE_CLASS = ListenerRegistrationMessages.CloseDataChangeListenerRegistrationReply.class;
-
-  @Override
-  public Object toSerializable() {
-    return ListenerRegistrationMessages.CloseDataChangeListenerRegistrationReply.newBuilder().build();
-  }
+public class CloseDataChangeListenerRegistrationReply {
+    public static final CloseDataChangeListenerRegistrationReply INSTANCE =
+            new CloseDataChangeListenerRegistrationReply();
 
+    private CloseDataChangeListenerRegistrationReply() {
+    }
 }