Class PersonServiceImpl.PersonSearcherImpl
- java.lang.Object
-
- com.atlassian.confluence.api.impl.service.people.PersonServiceImpl.PersonSearcherImpl
-
- All Implemented Interfaces:
ManyFetcher<Person>
,PersonService.PersonSearcher
- Enclosing class:
- PersonServiceImpl
public class PersonServiceImpl.PersonSearcherImpl extends Object implements PersonService.PersonSearcher
-
-
Constructor Summary
Constructors Constructor Description PersonSearcherImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PageResponse<Person>
fetchMany(PageRequest request)
PersonService.PersonSearcher
forUnsyncedUsers(String username)
Restrict the searcher to just unsynced / unknown users This search will perform a partial and a full match of username for the search term provided
-
-
-
Method Detail
-
forUnsyncedUsers
public PersonService.PersonSearcher forUnsyncedUsers(String username)
Description copied from interface:PersonService.PersonSearcher
Restrict the searcher to just unsynced / unknown users This search will perform a partial and a full match of username for the search term provided- Specified by:
forUnsyncedUsers
in interfacePersonService.PersonSearcher
- Returns:
- this
-
fetchMany
public PageResponse<Person> fetchMany(PageRequest request)
- Specified by:
fetchMany
in interfaceManyFetcher<Person>
- Parameters:
request
- - a pageRequest to use to paginate the response, this will be limited if it exceeds system limits- Returns:
- a pageResponse of given type that matches the given restrictions
-
-