public interface UserSearchStrategy
A strategy is resolved using a SearchStrategyFactory
and can be optimised for specific configurations of
directory.
SearchStrategyFactory
Modifier and Type | Method and Description |
---|---|
<T> List<T> |
searchUsers(EntityQuery<T> query)
Returns a
List<User> or List<String> matching the search criteria defined in the query. |
<T> List<T> searchUsers(EntityQuery<T> query)
List<User>
or List<String>
matching the search criteria defined in the query.
The users will be returned in a stable order including across pagination boundaries (excluding modification).
query
- the search query.List<User>
user objects or List<String>
usernames, depending on the query.Copyright © 2020 Atlassian. All rights reserved.