public interface YdtListener
In a response to execute operation YMS returns the YMS operation results with root YDT node. Now, protocols needs to walk through the YDT node and constructs the corresponding data format string. Protocol can opt to use listener or visitor based walking mechanism.
This interface needs to be implemented by protocol implementing listener's based call backs while YDT walk.
| Modifier and Type | Method and Description |
|---|---|
void |
enterYdtNode(YdtContext ydtContext)
YANG data tree node's entry, it will be called during a node entry.
|
void |
exitYdtNode(YdtContext ydtContext)
YANG data tree node's exit, it will be called during a node exit.
|
void enterYdtNode(YdtContext ydtContext)
ydtContext - YANG data tree contextvoid exitYdtNode(YdtContext ydtContext)
ydtContext - YANG data tree context