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%2FCreateTransactionReply.java;h=46b7194c84c1f13b9503623d43ad1e2aef7a50aa;hp=4faf9d370d56a4dc4bb3edf97de469fb33f95362;hb=996ab3e41386da6b27cf21f6464ef1e55363e1ca;hpb=00c362a353f1a7e6145f4c50811fa8b7a6c871d2 diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/CreateTransactionReply.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/CreateTransactionReply.java index 4faf9d370d..46b7194c84 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/CreateTransactionReply.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/CreateTransactionReply.java @@ -11,13 +11,20 @@ package org.opendaylight.controller.cluster.datastore.messages; import akka.actor.ActorPath; public class CreateTransactionReply { - private final ActorPath transactionPath; + private final ActorPath transactionPath; + private final String transactionId; - public CreateTransactionReply(ActorPath transactionPath) { - this.transactionPath = transactionPath; - } + public CreateTransactionReply(ActorPath transactionPath, + String transactionId) { + this.transactionPath = transactionPath; + this.transactionId = transactionId; + } - public ActorPath getTransactionPath() { - return transactionPath; - } + public ActorPath getTransactionPath() { + return transactionPath; + } + + public String getTransactionId() { + return transactionId; + } }