Prev Next |
Read/write support can be added to read-only data source by adding support for a few additional methods (shown below). We refer to this level as “simple read/write integration” because support for more complex data modification interactions, such as copying and moving items, is described in separate sections.
Return Value |
Method Name |
Parameters |
Description |
bool |
ID itemID
|
Creates an item with the given ID and name, based on the specified template, as a child of the given parent. Returns True if successful, False otherwise. |
|
bool |
ItemDefinition item
|
Removes the specified item from the physical storage. Returns True if the item was remove successfully, False otherwise. |
|
bool |
ItemDefinition item
|
Saves changes made to an item to the physical storage. Returns True if the item was saved successfully, False otherwise. |
Prev Next