Done
Details
Assignee
Oleksandr ZharovOleksandr ZharovReporter
Robert VargaRobert VargaLabels
Components
Fix versions
Priority
Medium
Details
Details
Assignee
Oleksandr Zharov
Oleksandr ZharovReporter
Robert Varga
Robert VargaLabels
Components
Fix versions
Priority
Created February 25, 2025 at 5:05 PM
Updated last month
Resolved last month
netconf-api
side of the house is quite poor in providing abstractions of NETCONF constructs. Let’s improve the situation by defining the object model of a NETCONF subtree filter . This should be a tree structure, with classes covering subfilter components.Aside from providing a way to build a filter in code, it needs to provide three facilities:
it should be
PrettyTreeAware
, with SubtreeFilterPrettyTree(), resulting a valid XML stringit should have a
public static SubtreeFilter readFrom(org.w3c.dom.Element)
method, which interprets an Element’s child nodes as the root sibling set and recursively build the filterit should have a
public void writeTo(org.w3c.dom.Element)
method, which do the opposite of 2): walk theSubtreeFilter
’s siblings and fill the provided element with child elements representing those siblings