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%2Fdatabroker%2Factors%2Fdds%2FGetClientRequest.java;h=db9142474720fea4b37d8cc55a85e686afc5a14f;hb=b66d5a3c59525a1c7885c3d653d9657a99f4103d;hp=4bfd1c4a601ef92d9b531c41e7d6c320efa56d43;hpb=d0621d28e507d9f6c0b9445d197f90253d34725d;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/databroker/actors/dds/GetClientRequest.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/databroker/actors/dds/GetClientRequest.java index 4bfd1c4a60..db91424747 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/databroker/actors/dds/GetClientRequest.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/databroker/actors/dds/GetClientRequest.java @@ -11,18 +11,18 @@ import akka.actor.ActorRef; import com.google.common.base.Preconditions; /** - * Request the ClientIdentifier from a particular actor. Response is an instance of {@link DistributedDataStoreClient}. + * Request the ClientIdentifier from a particular actor. Response is an instance of {@link DataStoreClient}. * * @author Robert Varga */ final class GetClientRequest { private final ActorRef replyTo; - public GetClientRequest(final ActorRef replyTo) { + GetClientRequest(final ActorRef replyTo) { this.replyTo = Preconditions.checkNotNull(replyTo); } ActorRef getReplyTo() { return replyTo; } -} \ No newline at end of file +}