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=b2c9ea563f37ac828908aa4cd173188922b99cfe;hp=31a06fe4c51f66329dd2b85dc49bad38afeb7b25;hb=5a4560d475f0ed328275f1a5c7a5dae292acfb02;hpb=83140d53722ad77dd804f7b4d761a673110b83b3 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 31a06fe4c5..b2c9ea563f 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,14 +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 Class SERIALIZABLE_CLASS = ThreePhaseCommitCohortMessages.AbortTransactionReply.class; +public class AbortTransactionReply extends EmptyReply { + private static final Object SERIALIZED_INSTANCE = + ThreePhaseCommitCohortMessages.AbortTransactionReply.newBuilder().build(); + private static final AbortTransactionReply INSTANCE = new AbortTransactionReply(); - @Override - public Object toSerializable() { - return ThreePhaseCommitCohortMessages.AbortTransactionReply.newBuilder().build(); - } + public AbortTransactionReply() { + } + + private AbortTransactionReply(short version) { + super(version); + } + + @Override + 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; + } }