public interface INeutronSfcDataProcessor<D extends org.opendaylight.yangtools.yang.binding.DataObject>
Modifier and Type | Method and Description |
---|---|
void |
add(org.opendaylight.yangtools.yang.binding.InstanceIdentifier<D> identifier,
D add)
Method adds the DataObject which is identified by InstanceIdentifier
to device.
|
void |
remove(org.opendaylight.yangtools.yang.binding.InstanceIdentifier<D> identifier,
D del)
Method removes DataObject which is identified by InstanceIdentifier.
|
void |
update(org.opendaylight.yangtools.yang.binding.InstanceIdentifier<D> identifier,
D original,
D update)
Method updates the original DataObject to the update DataObject.
|
void remove(org.opendaylight.yangtools.yang.binding.InstanceIdentifier<D> identifier, D del)
identifier
- - the whole path to DataObjectdel
- - DataObject for removingvoid update(org.opendaylight.yangtools.yang.binding.InstanceIdentifier<D> identifier, D original, D update)
identifier
- - the whole path to DataObjectoriginal
- - original DataObject (for update)update
- - changed DataObject (contain updates)Copyright © 2018 OpenDaylight. All rights reserved.