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%2FLocalShardNotFound.java;h=47ec16991a67bc9bfee2dde040c73ed4085873d8;hp=f6c6634e1a9a9748c245f53f194515544d24060c;hb=HEAD;hpb=3b4aea96013998f11450f5b83e4527bebd27af6a diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/LocalShardNotFound.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/LocalShardNotFound.java index f6c6634e1a..47ec16991a 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/LocalShardNotFound.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/LocalShardNotFound.java @@ -9,17 +9,19 @@ package org.opendaylight.controller.cluster.datastore.messages; /** - * LocalShardNotFound is a message that is sent by the {@link org.opendaylight.controller.cluster.datastore.ShardManager} - * when it cannot locate a shard in it's local registry with the shardName specified + * LocalShardNotFound is a message that is sent by the + * org.opendaylight.controller.cluster.datastore.shardmanager.ShardManager + * when it cannot locate a shard in it's local registry with the shardName specified. */ public class LocalShardNotFound { private final String shardName; /** + * Constructs an instance. * * @param shardName the name of the shard that could not be found */ - public LocalShardNotFound(String shardName) { + public LocalShardNotFound(final String shardName) { this.shardName = shardName; }