X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2Fmessages%2FCommitTransactionReply.java;h=b50bbcc1f34fbe0c9d4a00af9689ec7415ba3cce;hp=a0e5e895d2d6d4af282949fb77be0daee93c4ce8;hb=dd16edd5a758f0e51727de511f9868c72b2a1dd0;hpb=03ee21b4d6ae3dd6fd3a6991253e877dc96fabf5 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 a0e5e895d2..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,5 +8,35 @@ package org.opendaylight.controller.cluster.datastore.messages; -public class CommitTransactionReply { +import org.opendaylight.controller.cluster.datastore.DataStoreVersions; +import org.opendaylight.controller.protobuff.messages.cohort3pc.ThreePhaseCommitCohortMessages; + +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 + 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; + } }