22
33import java .util .Map ;
44
5- import com .arangodb .entity .CursorEntity ;
6- import com .arangodb .entity .DocumentEntity ;
75import com .arangodb .entity .ScalarExampleEntity ;
86import com .arangodb .entity .SimpleByResultEntity ;
97import com .arangodb .impl .BaseDriverInterface ;
1311 */
1412public interface InternalSimpleDriver extends BaseDriverInterface {
1513
16- @ Deprecated
17- <T > CursorEntity <T > executeSimpleAll (String database , String collectionName , int skip , int limit , Class <T > clazz )
18- throws ArangoException ;
19-
20- @ Deprecated
21- <T > CursorResultSet <T > executeSimpleAllWithResultSet (
22- String database ,
23- String collectionName ,
24- int skip ,
25- int limit ,
26- Class <T > clazz ) throws ArangoException ;
27-
28- @ Deprecated
29- <T > CursorEntity <DocumentEntity <T >> executeSimpleAllWithDocument (
30- String database ,
31- String collectionName ,
32- int skip ,
33- int limit ,
34- Class <T > clazz ) throws ArangoException ;
35-
36- @ Deprecated
37- <T > CursorResultSet <DocumentEntity <T >> executeSimpleAllWithDocumentResultSet (
38- String database ,
39- String collectionName ,
40- int skip ,
41- int limit ,
42- Class <T > clazz ) throws ArangoException ;
43-
4414 <T > DocumentCursor <T > executeSimpleAllDocuments (
4515 String database ,
4616 String collectionName ,
4717 int skip ,
4818 int limit ,
4919 Class <T > clazz ) throws ArangoException ;
5020
51- @ Deprecated
52- <T > CursorEntity <T > executeSimpleByExample (
53- String database ,
54- String collectionName ,
55- Map <String , Object > example ,
56- int skip ,
57- int limit ,
58- Class <T > clazz ) throws ArangoException ;
59-
60- @ Deprecated
61- <T > CursorResultSet <T > executeSimpleByExampleWithResultSet (
62- String database ,
63- String collectionName ,
64- Map <String , Object > example ,
65- int skip ,
66- int limit ,
67- Class <T > clazz ) throws ArangoException ;
68-
69- @ Deprecated
70- <T > CursorEntity <DocumentEntity <T >> executeSimpleByExampleWithDocument (
71- String database ,
72- String collectionName ,
73- Map <String , Object > example ,
74- int skip ,
75- int limit ,
76- Class <T > clazz ) throws ArangoException ;
77-
78- @ Deprecated
79- <T > CursorResultSet <DocumentEntity <T >> executeSimpleByExampleWithDocumentResultSet (
80- String database ,
81- String collectionName ,
82- Map <String , Object > example ,
83- int skip ,
84- int limit ,
85- Class <T > clazz ) throws ArangoException ;
86-
8721 <T > DocumentCursor <T > executeSimpleByExampleDocuments (
8822 String database ,
8923 String collectionName ,
@@ -101,54 +35,6 @@ <T> ScalarExampleEntity<T> executeSimpleFirstExample(
10135 <T > ScalarExampleEntity <T > executeSimpleAny (String database , String collectionName , Class <T > clazz )
10236 throws ArangoException ;
10337
104- @ Deprecated
105- <T > CursorEntity <T > executeSimpleRange (
106- String database ,
107- String collectionName ,
108- String attribute ,
109- Object left ,
110- Object right ,
111- Boolean closed ,
112- int skip ,
113- int limit ,
114- Class <T > clazz ) throws ArangoException ;
115-
116- @ Deprecated
117- <T > CursorResultSet <T > executeSimpleRangeWithResultSet (
118- String database ,
119- String collectionName ,
120- String attribute ,
121- Object left ,
122- Object right ,
123- Boolean closed ,
124- int skip ,
125- int limit ,
126- Class <T > clazz ) throws ArangoException ;
127-
128- @ Deprecated
129- <T > CursorEntity <DocumentEntity <T >> executeSimpleRangeWithDocument (
130- String database ,
131- String collectionName ,
132- String attribute ,
133- Object left ,
134- Object right ,
135- Boolean closed ,
136- int skip ,
137- int limit ,
138- Class <T > clazz ) throws ArangoException ;
139-
140- @ Deprecated
141- <T > CursorResultSet <DocumentEntity <T >> executeSimpleRangeWithDocumentResultSet (
142- String database ,
143- String collectionName ,
144- String attribute ,
145- Object left ,
146- Object right ,
147- Boolean closed ,
148- int skip ,
149- int limit ,
150- Class <T > clazz ) throws ArangoException ;
151-
15238 <T > DocumentCursor <T > executeSimpleRangeWithDocuments (
15339 String database ,
15440 String collectionName ,
@@ -184,50 +70,6 @@ SimpleByResultEntity executeSimpleUpdateByExample(
18470 Boolean waitForSync ,
18571 Integer limit ) throws ArangoException ;
18672
187- @ Deprecated
188- <T > CursorEntity <T > executeSimpleFulltext (
189- String database ,
190- String collectionName ,
191- String attribute ,
192- String query ,
193- int skip ,
194- int limit ,
195- String index ,
196- Class <T > clazz ) throws ArangoException ;
197-
198- @ Deprecated
199- <T > CursorResultSet <T > executeSimpleFulltextWithResultSet (
200- String database ,
201- String collectionName ,
202- String attribute ,
203- String query ,
204- int skip ,
205- int limit ,
206- String index ,
207- Class <T > clazz ) throws ArangoException ;
208-
209- @ Deprecated
210- <T > CursorEntity <DocumentEntity <T >> executeSimpleFulltextWithDocument (
211- String database ,
212- String collectionName ,
213- String attribute ,
214- String query ,
215- int skip ,
216- int limit ,
217- String index ,
218- Class <T > clazz ) throws ArangoException ;
219-
220- @ Deprecated
221- <T > CursorResultSet <DocumentEntity <T >> executeSimpleFulltextWithDocumentResultSet (
222- String database ,
223- String collectionName ,
224- String attribute ,
225- String query ,
226- int skip ,
227- int limit ,
228- String index ,
229- Class <T > clazz ) throws ArangoException ;
230-
23173 <T > DocumentCursor <T > executeSimpleFulltextWithDocuments (
23274 String database ,
23375 String collectionName ,
0 commit comments