| Modifier and Type | Method and Description |
|---|---|
<T> List<T> |
RemoteDirectory.searchGroups(EntityQuery<T> query)
Searches for
groups that match the supplied query criteria. |
<T> List<T> |
RemoteDirectory.searchUsers(EntityQuery<T> query)
Searches for
users that match the supplied query criteria. |
| Modifier and Type | Method and Description |
|---|---|
<T> PagedSearcher<T> |
ApplicationService.createPagedGroupSearcher(Application application,
EntityQuery<T> query)
Creates paged group searcher for a given group query.
|
<T> PagedSearcher<T> |
ApplicationService.createPagedUserSearcher(Application application,
EntityQuery<T> query)
Creates paged user searcher for a given user query.
|
List<Application> |
ApplicationManager.search(EntityQuery query)
Search applications.
|
List<String> |
AliasManager.search(EntityQuery entityQuery)
Perform an
AliasQuery search on the alias tables of Crowd. |
<T> List<T> |
ApplicationService.searchGroups(Application application,
EntityQuery<T> query)
Returns a List<Group> matching the search criteria defined in the query
for ALL of the active directories assigned to the application.
|
<T> List<T> |
ApplicationService.searchUsers(Application application,
EntityQuery<T> query)
Returns a List<User> or List<String> matching the search criteria defined in the query
for ALL of the active directories assigned to the application.
|
| Modifier and Type | Method and Description |
|---|---|
List<Directory> |
DirectoryManager.searchDirectories(EntityQuery<Directory> query)
Returns a List of Directories matching the search query.
|
<T> List<T> |
DirectoryManager.searchGroups(long directoryId,
EntityQuery<T> query)
Returns a list of groups matching the given query in the directory specified by the passed in
directoryId. |
<T> List<T> |
DirectoryManager.searchUsers(long directoryId,
EntityQuery<T> query)
Returns a list of users matching the given query in the directory specified by the passed in
directoryId. |
| Modifier and Type | Method and Description |
|---|---|
static <T> EntityQuery<T> |
QueryBuilder.queryFor(Class<T> returnType,
EntityDescriptor entity,
SearchRestriction searchRestriction,
int startIndex,
int maxResults) |
EntityQuery<T> |
QueryBuilder.PartialEntityQuery.returningAtMost(int maxResults) |
EntityQuery<T> |
QueryBuilder.PartialEntityQueryWithRestriction.returningAtMost(int maxResults) |
EntityQuery<T> |
QueryBuilder.PartialEntityQueryWithStartIndex.returningAtMost(int maxResults) |
| Modifier and Type | Method and Description |
|---|---|
static EntityQuery<Directory> |
DirectoryQueries.allDirectories()
Builds an EntityQuery for retrieving all defined directories
|
| Modifier and Type | Class and Description |
|---|---|
class |
AliasQuery |
class |
ApplicationQuery |
class |
AuthenticatedTokenQuery |
class |
DirectoryQuery |
class |
GroupQuery<T> |
class |
TokenQuery
Deprecated.
use
AuthenticatedTokenQuery instead. Since 3.6.0. |
class |
UserQuery<T> |
| Modifier and Type | Method and Description |
|---|---|
EntityQuery<T> |
EntityQuery.addToMaxResults(int add) |
EntityQuery<T> |
EntityQuery.baseSplitQuery() |
EntityQuery<T> |
EntityQuery.withAllResults() |
EntityQuery<T> |
EntityQuery.withMaxResults(int maxResults) |
<Q> EntityQuery<Q> |
EntityQuery.withReturnType(Class<Q> returnType) |
EntityQuery<T> |
EntityQuery.withSearchRestriction(SearchRestriction searchRestriction) |
EntityQuery<T> |
EntityQuery.withStartIndex(int startIndex) |
EntityQuery<T> |
EntityQuery.withStartIndexAndMaxResults(int startIndex,
int maxResults) |
| Modifier and Type | Method and Description |
|---|---|
Optional<List<EntityQuery<T>>> |
EntityQuery.splitOrRestrictionIfNeeded(int maxSize)
Splits the query if needed.
|
| Constructor and Description |
|---|
EntityQuery(EntityQuery<T> query,
int startIndex,
int maxResults) |
EntityQuery(EntityQuery query,
Class<T> returnType) |
Copyright © 2023 Atlassian. All rights reserved.