|
@@ -9,10 +9,11 @@ class LeDataSource(object):
|
9
|
9
|
|
10
|
10
|
|
11
|
11
|
## @brief search for a collection of objects
|
12
|
|
- # @param emclass
|
13
|
|
- # @param emtype
|
14
|
|
- # @param filters
|
|
12
|
+ # @param emclass LeClass : LeClass instance
|
|
13
|
+ # @param emtype LeType : LeType instance
|
|
14
|
+ # @param field_list list : list of fields to get from the datasource
|
|
15
|
+ # @param filters list : list of tuples formatted as (FIELD, OPERATOR, VALUE)
|
15
|
16
|
# @param relational_filters
|
16
|
|
- def get(self, emclass, emtype, filters, relational_filters):
|
17
|
|
- pass
|
|
17
|
+ def get(self, emclass, emtype, field_list, filters, relational_filters):
|
|
18
|
+ return False
|
18
|
19
|
|