X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2Fmessages%2FCloseTransactionReply.java;h=0e21b578ca91f59cc814f62f7c1ffb7d02e0c028;hb=7a38f0591bc527178510d749ae361e317dcc9788;hp=1c47a1827f11f86f26ee13c2d81237adcdd55f6b;hpb=3f153e5fa694fe4147e72e615edbb5c263e5a394;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/CloseTransactionReply.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/CloseTransactionReply.java index 1c47a1827f..0e21b578ca 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/CloseTransactionReply.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/CloseTransactionReply.java @@ -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 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() { } }