Clean up a lot of JavaDoc etc. to conform to current Checkstyle rules
[netconf.git] / restconf / sal-rest-docgen / src / main / java / org / opendaylight / netconf / sal / rest / doc / api / ApiDocService.java
index 71e54bb752ba49899675b2eacf280f38874ce0cc..e30dff77bf56824c6fa76fff1b5e84f39039e4b1 100644 (file)
@@ -28,9 +28,6 @@ public interface ApiDocService {
      * Generates index document for Swagger UI. This document lists out all
      * modules with link to get APIs for each module. The API for each module is
      * served by <code> getDocByModule()</code> method.
-     *
-     * @param uriInfo
-     * @return
      */
     @GET
     @Produces(MediaType.APPLICATION_JSON)
@@ -38,11 +35,6 @@ public interface ApiDocService {
 
     /**
      * Generates Swagger compliant document listing APIs for module.
-     *
-     * @param module
-     * @param revision
-     * @param uriInfo
-     * @return
      */
     @GET
     @Path("/{module}({revision})")
@@ -52,9 +44,6 @@ public interface ApiDocService {
 
     /**
      * Redirects to embedded swagger ui.
-     *
-     * @param uriInfo
-     * @return
      */
     @GET
     @Path("/ui")
@@ -65,9 +54,6 @@ public interface ApiDocService {
      * Generates index document for Swagger UI. This document lists out all
      * modules with link to get APIs for each module. The API for each module is
      * served by <code> getDocByModule()</code> method.
-     *
-     * @param uriInfo
-     * @return
      */
     @GET
     @Path("/mounts")
@@ -82,11 +68,6 @@ public interface ApiDocService {
 
     /**
      * Generates Swagger compliant document listing APIs for module.
-     *
-     * @param module
-     * @param revision
-     * @param uriInfo
-     * @return
      */
     @GET
     @Path("/mounts/{instance}/{module}({revision})")