Bump MRI upstreams
[netconf.git] / restconf / restconf-nb-rfc8040 / src / main / java / org / opendaylight / restconf / nb / rfc8040 / services / simple / api / RestconfService.java
index 844669eb89e8ab0b867e2ca5c4ed25a2f8c9a635..de7e2aaa05452b23b1a2a8542ede4a46fe828673 100644 (file)
@@ -17,10 +17,8 @@ import org.opendaylight.restconf.nb.rfc8040.utils.RestconfConstants;
 
 /**
  * Service for getting yang library version.
- *
  */
 public interface RestconfService extends UpdateHandlers {
-
     /**
      * Get yang library version.
      *
@@ -28,7 +26,12 @@ public interface RestconfService extends UpdateHandlers {
      */
     @GET
     @Path("/yang-library-version")
-    @Produces({ Rfc8040.MediaTypes.DATA + RestconfConstants.JSON, Rfc8040.MediaTypes.DATA, MediaType.APPLICATION_JSON,
-            MediaType.APPLICATION_XML, MediaType.TEXT_XML })
+    @Produces({
+        Rfc8040.MediaTypes.DATA + RestconfConstants.JSON,
+        Rfc8040.MediaTypes.DATA,
+        MediaType.APPLICATION_JSON,
+        MediaType.APPLICATION_XML,
+        MediaType.TEXT_XML
+    })
     NormalizedNodeContext getLibraryVersion();
 }