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%2FReadyTransactionReply.java;h=5ddc77f8f624c15f2e75dcebf3adbc693cebfde4;hp=32d31bf84db44e87a4ebbbd6328c97c3898fd9ae;hb=24c074a4b32ac97980a652b78824b7c2f97ffb78;hpb=b3d0ded2590e6a5a61055010f7b24e9a943c8d31 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 32d31bf84d..5ddc77f8f6 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,17 +8,49 @@ package org.opendaylight.controller.cluster.datastore.messages; -import akka.actor.ActorPath; +import java.io.IOException; +import java.io.ObjectInput; +import java.io.ObjectOutput; +import org.opendaylight.controller.cluster.datastore.DataStoreVersions; -public class ReadyTransactionReply { - private final ActorPath cohortPath; +public class ReadyTransactionReply extends VersionedExternalizableMessage { + private static final long serialVersionUID = 1L; - public ReadyTransactionReply(ActorPath cohortPath) { + private String cohortPath; - this.cohortPath = cohortPath; - } + public ReadyTransactionReply() { + } - public ActorPath getCohortPath() { - return cohortPath; - } + public ReadyTransactionReply(String cohortPath) { + this(cohortPath, DataStoreVersions.CURRENT_VERSION); + } + + public ReadyTransactionReply(String cohortPath, short version) { + super(version); + this.cohortPath = cohortPath; + } + + public String getCohortPath() { + return cohortPath; + } + + @Override + 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); + } + + public static ReadyTransactionReply fromSerializable(Object serializable) { + return (ReadyTransactionReply)serializable; + } + + public static boolean isSerializedType(Object message) { + return message instanceof ReadyTransactionReply; + } }