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=59dd6db06e81c619f81edafe73a664d0e14189ed;hb=f963866fe6355cdea954d48764d59069c9aa2e04;hp=32d31bf84db44e87a4ebbbd6328c97c3898fd9ae;hpb=03ee21b4d6ae3dd6fd3a6991253e877dc96fabf5;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 32d31bf84d..59dd6db06e 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,32 @@ package org.opendaylight.controller.cluster.datastore.messages; -import akka.actor.ActorPath; +import org.opendaylight.controller.protobuff.messages.transaction.ShardTransactionMessages; -public class ReadyTransactionReply { - private final ActorPath cohortPath; +public class ReadyTransactionReply implements SerializableMessage { + public static final Class SERIALIZABLE_CLASS = ShardTransactionMessages.ReadyTransactionReply.class; + private final String cohortPath; - public ReadyTransactionReply(ActorPath cohortPath) { + public ReadyTransactionReply(String cohortPath) { this.cohortPath = cohortPath; } - public ActorPath getCohortPath() { + public String getCohortPath() { return cohortPath; } + + @Override + public ShardTransactionMessages.ReadyTransactionReply toSerializable() { + return ShardTransactionMessages.ReadyTransactionReply.newBuilder() + .setActorPath(cohortPath).build(); + } + + public static ReadyTransactionReply fromSerializable(Object serializable) { + ShardTransactionMessages.ReadyTransactionReply o = + (ShardTransactionMessages.ReadyTransactionReply) serializable; + + return new ReadyTransactionReply(o.getActorPath()); + + } }