| Modifier and Type | Method and Description |
|---|---|
protected void |
LDAPFederationProviderFactory.syncImpl(KeycloakSessionFactory sessionFactory,
IdentityQuery<LDAPUser> userQuery,
String realmId,
UserFederationProviderModel fedModel) |
| Modifier and Type | Method and Description |
|---|---|
<T extends IdentityType> |
IdentityQueryBuilder.createIdentityQuery(Class<T> identityType)
Create an
IdentityQuery that can be used to query for IdentityType instances of a the given identityType. |
IdentityQuery<T> |
IdentityQuery.setLimit(int limit)
Set the maximum number of results to retrieve.
|
IdentityQuery<T> |
IdentityQuery.setOffset(int offset)
Set the position of the first result to retrieve.
|
IdentityQuery<T> |
IdentityQuery.setPaginationContext(Object object)
Used for pagination models like LDAP when search will return some object (like cookie) for searching on next page
|
IdentityQuery<T> |
IdentityQuery.setParameter(QueryParameter param,
Object... value)
Deprecated.
Use
where(Condition...) to specify query conditions. |
IdentityQuery<T> |
IdentityQuery.setSortAscending(boolean sortAscending)
Deprecated.
Use
sortBy(Sort...) instead. Where you can create sort conditions
from the IdentityQueryBuilder. |
IdentityQuery<T> |
IdentityQuery.setSortParameters(QueryParameter... sortParameters)
Deprecated.
Use
sortBy(Sort...) instead. Where you can create sort conditions
from the IdentityQueryBuilder. |
IdentityQuery<T> |
IdentityQuery.sortBy(Sort... sorts)
Add to this query the sorting conditions to be applied to the results.
|
IdentityQuery<T> |
IdentityQuery.where(Condition... condition)
Add to this query the conditions that will be used to filter results.
|
| Modifier and Type | Class and Description |
|---|---|
class |
DefaultIdentityQuery<T extends IdentityType>
Default IdentityQuery implementation.
|
| Modifier and Type | Method and Description |
|---|---|
<T extends IdentityType> |
DefaultQueryBuilder.createIdentityQuery(Class<T> identityType) |
IdentityQuery<T> |
DefaultIdentityQuery.setLimit(int limit) |
IdentityQuery<T> |
DefaultIdentityQuery.setOffset(int offset) |
IdentityQuery<T> |
DefaultIdentityQuery.setPaginationContext(Object object) |
IdentityQuery<T> |
DefaultIdentityQuery.setParameter(QueryParameter queryParameter,
Object... value) |
IdentityQuery<T> |
DefaultIdentityQuery.setSortAscending(boolean sortAscending) |
IdentityQuery<T> |
DefaultIdentityQuery.setSortParameters(QueryParameter... sortParameters) |
IdentityQuery<T> |
DefaultIdentityQuery.sortBy(Sort... sorts) |
IdentityQuery<T> |
DefaultIdentityQuery.where(Condition... condition) |
| Modifier and Type | Method and Description |
|---|---|
<V extends IdentityType> |
IdentityStore.countQueryResults(IdentityQuery<V> identityQuery) |
<V extends IdentityType> |
IdentityStore.fetchQueryResults(IdentityQuery<V> identityQuery) |
| Modifier and Type | Method and Description |
|---|---|
<V extends IdentityType> |
LDAPIdentityStore.countQueryResults(IdentityQuery<V> identityQuery) |
protected <V extends IdentityType> |
LDAPIdentityStore.createIdentityTypeSearchFilter(IdentityQuery<V> identityQuery,
LDAPMappingConfiguration ldapEntryConfig) |
<V extends IdentityType> |
LDAPIdentityStore.fetchQueryResults(IdentityQuery<V> identityQuery) |
<V extends IdentityType> |
LDAPOperationManager.searchPaginated(String baseDN,
String filter,
LDAPMappingConfiguration mappingConfiguration,
IdentityQuery<V> identityQuery) |
Copyright © 2015 JBoss by Red Hat. All rights reserved.