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%2FCommitTransactionReply.java;h=167124c6fe672258632e1ebe84ca36cf1b513832;hb=HEAD;hp=5751b71037ba84e97a68834c8e28a1399e7c1d36;hpb=c911a187bdcd6160c1929e53466cd9de681c2098;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 5751b71037..167124c6fe 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 @@ -5,17 +5,29 @@ * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ - package org.opendaylight.controller.cluster.datastore.messages; -import org.opendaylight.controller.protobuff.messages.cohort3pc.ThreePhaseCommitCohortMessages; +import org.opendaylight.controller.cluster.datastore.DataStoreVersions; + +@Deprecated(since = "9.0.0", forRemoval = true) +public final class CommitTransactionReply extends VersionedExternalizableMessage { + @java.io.Serial + private static final long serialVersionUID = -8342450250867395000L; + + public static final CommitTransactionReply INSTANCE = new CommitTransactionReply(); + + public CommitTransactionReply() { + } -public class CommitTransactionReply implements SerializableMessage { + private CommitTransactionReply(final short version) { + super(version); + } - public static final Class SERIALIZABLE_CLASS = ThreePhaseCommitCohortMessages.CommitTransactionReply.class; + public static CommitTransactionReply instance(final short version) { + return version == DataStoreVersions.CURRENT_VERSION ? INSTANCE : new CommitTransactionReply(version); + } - @Override - public Object toSerializable() { - return ThreePhaseCommitCohortMessages.CommitTransactionReply.newBuilder().build(); - } + public static boolean isSerializedType(final Object message) { + return message instanceof CommitTransactionReply; + } }