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%2FReadyTransactionReply.java;h=475ef3a3633d49566b719c2d3e138820cb08384a;hb=8ec73bf853a9b6708b455c0321a585992e02b125;hp=eee489177a5d1496b78bd47a8bf873d959082e06;hpb=54caaff453fc8da7f8f927323e6b97bed2f33d25;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/ReadyTransactionReply.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/ReadyTransactionReply.java index eee489177a..475ef3a363 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/ReadyTransactionReply.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/ReadyTransactionReply.java @@ -8,16 +8,25 @@ package org.opendaylight.controller.cluster.datastore.messages; -import org.opendaylight.controller.protobuff.messages.transaction.ShardTransactionMessages; +import java.io.IOException; +import java.io.ObjectInput; +import java.io.ObjectOutput; +import org.opendaylight.controller.cluster.datastore.DataStoreVersions; -public class ReadyTransactionReply implements SerializableMessage { - public static final Class SERIALIZABLE_CLASS = - ShardTransactionMessages.ReadyTransactionReply.class; +public class ReadyTransactionReply extends VersionedExternalizableMessage { + private static final long serialVersionUID = 1L; - private final String cohortPath; + private String cohortPath; + + public ReadyTransactionReply() { + } public ReadyTransactionReply(String cohortPath) { + this(cohortPath, DataStoreVersions.CURRENT_VERSION); + } + public ReadyTransactionReply(String cohortPath, short version) { + super(version); this.cohortPath = cohortPath; } @@ -26,15 +35,28 @@ public class ReadyTransactionReply implements SerializableMessage { } @Override - public ShardTransactionMessages.ReadyTransactionReply toSerializable() { - return ShardTransactionMessages.ReadyTransactionReply.newBuilder(). - setActorPath(cohortPath).build(); + public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { + super.readExternal(in); + cohortPath = in.readUTF(); + } + + @Override + public void writeExternal(ObjectOutput out) throws IOException { + super.writeExternal(out); + out.writeUTF(cohortPath); + } + + @Override + protected Object newLegacySerializedInstance() { + // no legacy serialized type for this class; return self + return this; } public static ReadyTransactionReply fromSerializable(Object serializable) { - ShardTransactionMessages.ReadyTransactionReply o = - (ShardTransactionMessages.ReadyTransactionReply) serializable; + return (ReadyTransactionReply)serializable; + } - return new ReadyTransactionReply(o.getActorPath()); + public static boolean isSerializedType(Object message) { + return message instanceof ReadyTransactionReply; } }