public interface DOMDataTreeWriteCursor extends DOMDataTreeCursor
Modifier and Type | Method and Description |
---|---|
void |
delete(YangInstanceIdentifier.PathArgument child)
Delete the specified child.
|
void |
merge(YangInstanceIdentifier.PathArgument child,
NormalizedNode<?,?> data)
Merge the specified data with the currently-present data at specified path.
|
void |
write(YangInstanceIdentifier.PathArgument child,
NormalizedNode<?,?> data)
Replace the data at specified path with supplied data.
|
void delete(YangInstanceIdentifier.PathArgument child)
child
- Child identifierBackendFailedException
- when implementation-specific errors occurs while servicing the
request.void merge(YangInstanceIdentifier.PathArgument child, NormalizedNode<?,?> data)
child
- Child identifierdata
- Data to be mergedBackendFailedException
- when implementation-specific errors occurs while servicing the
request.void write(YangInstanceIdentifier.PathArgument child, NormalizedNode<?,?> data)
child
- Child identifierdata
- New node dataBackendFailedException
- when implementation-specific errors occurs while servicing the
request.Copyright © 2020 OpenDaylight. All rights reserved.