1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.apache.ibatis.submitted.result_set_type;
17
18 import java.util.List;
19
20 import org.apache.ibatis.session.RowBounds;
21
22 public interface Mapper {
23
24 List<User> getUserWithStatementAndUnset(RowBounds rowBounds);
25
26 List<User> getUserWithStatementAndDefault(RowBounds rowBounds);
27
28 List<User> getUserWithStatementAndForwardOnly(RowBounds rowBounds);
29
30 List<User> getUserWithStatementAndScrollInsensitive(RowBounds rowBounds);
31
32 List<User> getUserWithStatementAndScrollSensitive(RowBounds rowBounds);
33
34 List<User> getUserWithPreparedAndUnset(RowBounds rowBounds);
35
36 List<User> getUserWithPreparedAndDefault(RowBounds rowBounds);
37
38 List<User> getUserWithPreparedAndForwardOnly(RowBounds rowBounds);
39
40 List<User> getUserWithPreparedAndScrollInsensitive(RowBounds rowBounds);
41
42 List<User> getUserWithPreparedAndScrollSensitive(RowBounds rowBounds);
43
44 List<User> getUserWithCallableAndUnset(RowBounds rowBounds);
45
46 List<User> getUserWithCallableAndDefault(RowBounds rowBounds);
47
48 List<User> getUserWithCallableAndForwardOnly(RowBounds rowBounds);
49
50 List<User> getUserWithCallableAndScrollInsensitive(RowBounds rowBounds);
51
52 List<User> getUserWithCallableAndScrollSensitive(RowBounds rowBounds);
53
54 }