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=8d3fb17c20b7aeb230363b90b48a67ce1d6501eb;hb=0597bd64ca6214fd3ca3fb152ab2ca7fd3b32ed5;hp=79c6b036fa997c94fef08517335d4315cae0629f;hpb=f9f6d8ed4b12e39386801f6b16b9485f5558336e;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 79c6b036fa..8d3fb17c20 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 @@ -5,17 +5,27 @@ * 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; + +public class AbortTransactionReply extends VersionedExternalizableMessage { + @java.io.Serial + private static final long serialVersionUID = 7251132353204199793L; + private static final AbortTransactionReply INSTANCE = new AbortTransactionReply(); + + public AbortTransactionReply() { + } -public class AbortTransactionReply implements SerializableMessage { - public static final Class SERIALIZABLE_CLASS = - ThreePhaseCommitCohortMessages.AbortTransactionReply.class; + private AbortTransactionReply(short version) { + super(version); + } + + public static AbortTransactionReply instance(short version) { + return version == DataStoreVersions.CURRENT_VERSION ? INSTANCE : new AbortTransactionReply(version); + } - @Override - public Object toSerializable() { - return ThreePhaseCommitCohortMessages.AbortTransactionReply.newBuilder().build(); + public static boolean isSerializedType(Object message) { + return message instanceof AbortTransactionReply; } }