Package | Description |
---|---|
org.picketlink.idm | |
org.picketlink.idm.query | |
org.picketlink.idm.spi |
Modifier and Type | Method and Description |
---|---|
<T extends IdentityType> |
IdentityManager.createIdentityQuery(Class<T> identityType)
Deprecated.
Use the
IdentityManager.getQueryBuilder() to create queries. |
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 | Method and Description |
---|---|
<V extends IdentityType> |
IdentityStore.countQueryResults(IdentityContext context,
IdentityQuery<V> identityQuery) |
<V extends IdentityType> |
IdentityStore.fetchQueryResults(IdentityContext context,
IdentityQuery<V> identityQuery) |
Copyright © 2018 JBoss by Red Hat. All rights reserved.