Interface DataProcessor<T extends org.opendaylight.yangtools.yang.binding.DataObject>
-
- All Known Implementing Classes:
NetworkDataProcessor,PortDataProcessor,SubnetDataProcessor
public interface DataProcessor<T extends org.opendaylight.yangtools.yang.binding.DataObject>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreate(T object)This method creates a new DataObject.voiddelete(T object)This method removes a DataObject.voidupdate(T object)This method updates a DataObject.
-
-
-
Method Detail
-
create
void create(T object)
This method creates a new DataObject.- Parameters:
object- - the object of type DataObject that has changed
-
update
void update(T object)
This method updates a DataObject.- Parameters:
object- - the object of type DataObject that has changed
-
delete
void delete(T object)
This method removes a DataObject.- Parameters:
object- - the object of type DataObject that has changed
-
-