X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;ds=sidebyside;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2Fmessages%2FCommitTransactionReply.java;h=b50bbcc1f34fbe0c9d4a00af9689ec7415ba3cce;hb=8ec73bf853a9b6708b455c0321a585992e02b125;hp=47adea5ea0305678de89c8b11c4c87a6ea91bedc;hpb=989c3723e634bf4a0fb671246c31eadf255c462c;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/CommitTransactionReply.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/CommitTransactionReply.java index 47adea5ea0..b50bbcc1f3 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/CommitTransactionReply.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/CommitTransactionReply.java @@ -8,19 +8,35 @@ 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 implements SerializableMessage { - public static final Class SERIALIZABLE_CLASS = - ThreePhaseCommitCohortMessages.CommitTransactionReply.class; - +public class CommitTransactionReply extends VersionedExternalizableMessage { + @Deprecated private static final Object SERIALIZED_INSTANCE = ThreePhaseCommitCohortMessages.CommitTransactionReply.newBuilder().build(); public static final CommitTransactionReply INSTANCE = new CommitTransactionReply(); + public CommitTransactionReply() { + } + + private CommitTransactionReply(short version) { + super(version); + } + + @Deprecated @Override - public Object toSerializable() { + 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; + } }