Fix checkstyle issues in module sal-dom-broker
[controller.git] / opendaylight / md-sal / sal-dom-broker / src / main / java / org / opendaylight / controller / md / sal / dom / broker / impl / jmx / CommitStatsMXBean.java
index 40dc30eb0ebcc25f78164408730803b1230ffbe7..ec4461bf95f092f86c3ca1977dd7a59b20abffbb 100644 (file)
@@ -17,24 +17,33 @@ public interface CommitStatsMXBean {
 
     /**
      * Returns the total number of commits that have occurred.
+     *
+     * @return Returns the total number of commits that have occurred
+     *
      */
     long getTotalCommits();
 
     /**
      * Returns a string representing the time duration of the longest commit, in the appropriate
      * scaled units, along with the date/time that it occurred.
+     *
+     * @return string
      */
     String getLongestCommitTime();
 
     /**
      * Returns a string representing the time duration of the shortest commit, in the appropriate
      * scaled units, along with the date/time that it occurred.
+     *
+     * @return string
      */
     String getShortestCommitTime();
 
     /**
      * Returns a string representing average commit time duration, in the appropriate
      * scaled units.
+     *
+     * @return string
      */
     String getAverageCommitTime();