Fix RestconfOperationsService.getOperations(UriInfo)
[netconf.git] / restconf / restconf-nb-bierman02 / src / main / java / org / opendaylight / netconf / sal / restconf / impl / StatisticsRestconfServiceWrapper.java
index 33830d150c70db2d3f30182872f94953f11119aa..cfd326fc8832158bedf35b5db8e363d181153208 100644 (file)
@@ -77,8 +77,13 @@ public final class StatisticsRestconfServiceWrapper implements RestconfService {
     }
 
     @Override
-    public NormalizedNodeContext getOperations(final UriInfo uriInfo) {
-        return this.delegate.getOperations(uriInfo);
+    public String getOperationsJSON() {
+        return this.delegate.getOperationsJSON();
+    }
+
+    @Override
+    public String getOperationsXML() {
+        return this.delegate.getOperationsXML();
     }
 
     @Override