|
@@ -15,9 +15,8 @@ class DummyDatasource(object):
|
15
|
15
|
## @brief update an existing LeObject
|
16
|
16
|
# @param lodel_id (int) : list of lodel_id
|
17
|
17
|
# @param checked_data dict
|
18
|
|
- # @param datasource_filters (string)
|
19
|
|
- def update(self, lodel_id, checked_data, datasource_filters):
|
20
|
|
- print ("DummyDatasource.update: ", lodel_id, checked_data, datasource_filters)
|
|
18
|
+ def update(self, lodel_id, checked_data):
|
|
19
|
+ print ("DummyDatasource.update: ", lodel_id, checked_data)
|
21
|
20
|
return True
|
22
|
21
|
|
23
|
22
|
## @brief create a new LeObject
|
|
@@ -31,10 +30,9 @@ class DummyDatasource(object):
|
31
|
30
|
|
32
|
31
|
## @brief delete an existing LeObject
|
33
|
32
|
# @param lodel_id int | (int): lodel_id of the object(s) to delete
|
34
|
|
- # @param delete_filters string | (string): list of string of delete filters
|
35
|
33
|
# @return okay bool: True on success, it will raise on failure
|
36
|
|
- def delete(self, lodel_id, delete_filters=None):
|
37
|
|
- print("DummyDatasource.delete: ", lodel_id, delete_filters)
|
|
34
|
+ def delete(self, lodel_id):
|
|
35
|
+ print("DummyDatasource.delete: ", lodel_id)
|
38
|
36
|
return True
|
39
|
37
|
|
40
|
38
|
## @brief search for a collection of objects
|