Fix RestconfOperationsService.getOperations(UriInfo)
[netconf.git] / restconf / restconf-nb-bierman02 / src / main / java / org / opendaylight / netconf / sal / rest / impl / RestconfCompositeWrapper.java
index 8198fd9fc2dbee8978b3ff15c401ba53ad758a04..6a528dbce52fc14f23d38a9e671baba63571e67e 100644 (file)
@@ -49,8 +49,13 @@ public class RestconfCompositeWrapper implements RestconfService, SchemaRetrieva
     }
 
     @Override
-    public NormalizedNodeContext getOperations(final UriInfo uriInfo) {
-        return this.restconf.getOperations(uriInfo);
+    public String getOperationsJSON() {
+        return this.restconf.getOperationsJSON();
+    }
+
+    @Override
+    public String getOperationsXML() {
+        return this.restconf.getOperationsXML();
     }
 
     @Override