Implement subtree filtering using fields
[netconf.git] / netconf / sal-netconf-connector / src / main / java / org / opendaylight / netconf / sal / connect / netconf / util / SchemalessRpcStructureTransformer.java
index 936fdf2f863d7b7f647f22ec16565e7098b53001..372b356bfb7cd1261bd3becb4cccac0c29c1cd46 100644 (file)
@@ -137,6 +137,13 @@ class SchemalessRpcStructureTransformer implements RpcStructureTransformer {
                 .build();
     }
 
+    @Override
+    public DataContainerChild<?, ?> toFilterStructure(final List<FieldsFilter> fieldsFilters) {
+        // todo: implementation of this feature
+        throw new UnsupportedOperationException(
+                "Creation of filter structure using fields for schemaless mountpoint is not supported");
+    }
+
     private static void checkDataValidForPath(final YangInstanceIdentifier dataPath, final Element dataNode) {
         //if datapath is empty, consider dataNode to be a root node
         if (dataPath.isEmpty()) {