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=282e23ed3bab4458ef771b338d6bf03861536662;hb=3104f91c7d1b3ee5914d8778f87315f4ac64036d;hp=5273dc247925608326f9756e5dcbb061b106e5e2;hpb=83140d53722ad77dd804f7b4d761a673110b83b3;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 5273dc2479..282e23ed3b 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,32 +8,33 @@ package org.opendaylight.controller.cluster.datastore.messages; -import akka.actor.ActorPath; -import akka.actor.ActorSystem; import org.opendaylight.controller.protobuff.messages.transaction.ShardTransactionMessages; public class ReadyTransactionReply implements SerializableMessage { - public static final Class SERIALIZABLE_CLASS = ShardTransactionMessages.ReadyTransactionReply.class; - private final ActorPath cohortPath; + public static final Class SERIALIZABLE_CLASS = + ShardTransactionMessages.ReadyTransactionReply.class; - public ReadyTransactionReply(ActorPath cohortPath) { + private final String cohortPath; - this.cohortPath = cohortPath; - } + public ReadyTransactionReply(String cohortPath) { + this.cohortPath = cohortPath; + } - public ActorPath getCohortPath() { - return cohortPath; - } + public String getCohortPath() { + return cohortPath; + } - @Override - public ShardTransactionMessages.ReadyTransactionReply toSerializable() { - return ShardTransactionMessages.ReadyTransactionReply.newBuilder() - .setActorPath(cohortPath.toString()).build(); - } + @Override + public ShardTransactionMessages.ReadyTransactionReply toSerializable() { + return ShardTransactionMessages.ReadyTransactionReply.newBuilder() + .setActorPath(cohortPath) + .build(); + } - public static ReadyTransactionReply fromSerializable(ActorSystem actorSystem,Object serializable){ - ShardTransactionMessages.ReadyTransactionReply o = (ShardTransactionMessages.ReadyTransactionReply) serializable; - return new ReadyTransactionReply( - actorSystem.actorFor(o.getActorPath()).path()); - } + public static ReadyTransactionReply fromSerializable(Object serializable) { + ShardTransactionMessages.ReadyTransactionReply o = + (ShardTransactionMessages.ReadyTransactionReply) serializable; + + return new ReadyTransactionReply(o.getActorPath()); + } }