-
Bug Report
-
Resolution: Fixed
-
L3 - Default
-
None
-
None
Given:
- a group A
- that group A has more than 10 members
Steps to reproduce:
- execute the following query
identityService .createUserQuery() .memberOfGroup("A") .listPage(0, 5); // -> the first five users are returned
- when executing the following query
identityService .createUserQuery() .memberOfGroup("A") .listPage(5, 5); // -> then an empty list is returned
Problem:
When querying for user with firstResult >= maxResults, then an empty list is returned.
Expected Behavior:
The correct result is returned.