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