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=32d31bf84db44e87a4ebbbd6328c97c3898fd9ae;hp=48565d4fbb5b8847b1c90beea6ce7ca964b00256;hb=refs%2Fchanges%2F70%2F8270%2F5;hpb=324c96119dec46d0fee5e641f0a26caac478c23b 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 48565d4fbb..32d31bf84d 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 @@ -11,14 +11,14 @@ package org.opendaylight.controller.cluster.datastore.messages; import akka.actor.ActorPath; public class ReadyTransactionReply { - private final ActorPath path; + private final ActorPath cohortPath; - public ReadyTransactionReply(ActorPath path) { + public ReadyTransactionReply(ActorPath cohortPath) { - this.path = path; + this.cohortPath = cohortPath; } - public ActorPath getPath() { - return path; + public ActorPath getCohortPath() { + return cohortPath; } }