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%2FAbortTransactionReply.java;h=ac65b5b4898ed9c72c6bd2a631a670f301889ed6;hp=3680aec4f36035abbdb36b4b84f7fda93375fc2d;hb=909831d806ef3b35358206559523f09716214e58;hpb=fcf65d723ef53f8da2dd6347f41ce19016fc36e5 diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/AbortTransactionReply.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/AbortTransactionReply.java index 3680aec4f3..ac65b5b489 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/AbortTransactionReply.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/AbortTransactionReply.java @@ -8,19 +8,33 @@ package org.opendaylight.controller.cluster.datastore.messages; +import org.opendaylight.controller.cluster.datastore.DataStoreVersions; import org.opendaylight.controller.protobuff.messages.cohort3pc.ThreePhaseCommitCohortMessages; -public class AbortTransactionReply implements SerializableMessage { - public static final Class SERIALIZABLE_CLASS = - ThreePhaseCommitCohortMessages.AbortTransactionReply.class; - +public class AbortTransactionReply extends VersionedExternalizableMessage { private static final Object SERIALIZED_INSTANCE = ThreePhaseCommitCohortMessages.AbortTransactionReply.newBuilder().build(); - public static final AbortTransactionReply INSTANCE = new AbortTransactionReply(); + private static final AbortTransactionReply INSTANCE = new AbortTransactionReply(); + + public AbortTransactionReply() { + } + + private AbortTransactionReply(short version) { + super(version); + } @Override - public Object toSerializable() { + protected Object newLegacySerializedInstance() { return SERIALIZED_INSTANCE; } + + public static AbortTransactionReply instance(short version) { + return version == DataStoreVersions.CURRENT_VERSION ? INSTANCE : new AbortTransactionReply(version); + } + + public static boolean isSerializedType(Object message) { + return message instanceof AbortTransactionReply || + message instanceof ThreePhaseCommitCohortMessages.AbortTransactionReply; + } }