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%2FAbortTransactionReply.java;h=3b58458e1a3dca93fd37ba97d01a05a64c26cc65;hb=e2e1a247a7aeedff1bd2721d12050aa04cf4f67d;hp=3680aec4f36035abbdb36b4b84f7fda93375fc2d;hpb=85a4118a6fe51d8571a1e7bb398d954e4ceddd33;p=controller.git 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..3b58458e1a 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,23 @@ package org.opendaylight.controller.cluster.datastore.messages; -import org.opendaylight.controller.protobuff.messages.cohort3pc.ThreePhaseCommitCohortMessages; +import org.opendaylight.controller.cluster.datastore.DataStoreVersions; -public class AbortTransactionReply implements SerializableMessage { - public static final Class SERIALIZABLE_CLASS = - ThreePhaseCommitCohortMessages.AbortTransactionReply.class; +public class AbortTransactionReply extends VersionedExternalizableMessage { + private static final AbortTransactionReply INSTANCE = new AbortTransactionReply(); - private static final Object SERIALIZED_INSTANCE = - ThreePhaseCommitCohortMessages.AbortTransactionReply.newBuilder().build(); + public AbortTransactionReply() { + } + + private AbortTransactionReply(short version) { + super(version); + } - public static final AbortTransactionReply INSTANCE = new AbortTransactionReply(); + public static AbortTransactionReply instance(short version) { + return version == DataStoreVersions.CURRENT_VERSION ? INSTANCE : new AbortTransactionReply(version); + } - @Override - public Object toSerializable() { - return SERIALIZED_INSTANCE; + public static boolean isSerializedType(Object message) { + return message instanceof AbortTransactionReply; } }