Improve segmented journal actor metrics
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / messages / LocalShardNotFound.java
index f6c6634e1a9a9748c245f53f194515544d24060c..47ec16991a67bc9bfee2dde040c73ed4085873d8 100644 (file)
@@ -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;
     }