This component offers Swagger documentation of the RestConf APIs. This Swagger documentation can be accessed in two ways: I. Running server Open a browser and go to http://:8181/apidoc/explorer/index.html II. Static documentation generation By adding a reference to the StaticDocGenerator class in any pom.xml, static documentation will be generated. This static documentation will document all the RestConf APIs for the YANG files in that artifact and all the YANG files in that artifact's dependencies. In order to generate static documentation for all resources, this should be placed in a downstream project. Below is what you would add to the section under . org.apache.maven.plugins maven-dependency-plugin 2.8 unpack-static-documentation unpack-dependencies generate-resources ${project.build.directory}/generated-resources/swagger-api-documentation sal-rest-docgen **/explorer/css/**/*, **/explorer/images/**/*, **/explorer/lib/**/*, **/explorer/static/**/*, true false org.opendaylight.yangtools yang-maven-plugin ${yangtools.version} org.opendaylight.yangtools maven-sal-api-gen-plugin ${yangtools.version} jar org.opendaylight.yangtools yang-binding ${yangtools.version} jar org.opendaylight.controller sal-rest-docgen ${mdsal.version} jar generate-sources src org.opendaylight.controller.sal.rest.doc.impl.StaticDocGenerator ${project.build.directory}/generated-resources/swagger-api-documentation/explorer/static true