Uses of Class
org.keycloak.models.map.storage.QueryParameters
-
-
Uses of QueryParameters in org.keycloak.models.map.events
Methods in org.keycloak.models.map.events with parameters of type QueryParameters Modifier and Type Method Description protected abstract Stream<AdminEvent>
MapAdminEventQuery. read(QueryParameters<AdminEvent> queryParameters)
protected abstract Stream<Event>
MapAuthEventQuery. read(QueryParameters<Event> queryParameters)
-
Uses of QueryParameters in org.keycloak.models.map.storage
Methods in org.keycloak.models.map.storage that return QueryParameters Modifier and Type Method Description QueryParameters<M>
QueryParameters. limit(Integer limit)
Sets limit parameterQueryParameters<M>
QueryParameters. offset(Integer offset)
Sets offset parameterQueryParameters<M>
QueryParameters. orderBy(SearchableModelField<M> searchableModelField, QueryParameters.Order order)
Sets orderBy parameter; can be called repeatedly; fields are stored in a list where the first field has highest priority when determining order; e.g.QueryParameters<M>
QueryParameters. pagination(Integer offset, Integer limit, SearchableModelField<M> orderByAscField)
Sets pagination (offset, limit and orderBy) parameters toQueryParameters
static <M> QueryParameters<M>
QueryParameters. withCriteria(DefaultModelCriteria<M> mcb)
Creates a newQueryParameters
instance initialized withModelCriteriaBuilder
Methods in org.keycloak.models.map.storage with parameters of type QueryParameters Modifier and Type Method Description long
MapKeycloakTransaction. delete(QueryParameters<M> queryParameters)
Instructs this transaction to remove values (identified bymcb
filter) from the underlying store on commit.default boolean
MapKeycloakTransaction. exists(QueryParameters<M> queryParameters)
Returnstrue
if at least one object is satisfying givencriteria
from the underlying storage with respect to changes done in current transaction.long
MapKeycloakTransaction. getCount(QueryParameters<M> queryParameters)
Returns a number of values present in the underlying storage that fulfill the given criteria with respect to changes done in the current transaction.Stream<V>
MapKeycloakTransaction. read(QueryParameters<M> queryParameters)
Returns a stream of values from underlying storage that are updated based on the current transaction changes; i.e. -
Uses of QueryParameters in org.keycloak.models.map.storage.chm
Methods in org.keycloak.models.map.storage.chm with parameters of type QueryParameters Modifier and Type Method Description long
ConcurrentHashMapCrudOperations. delete(QueryParameters<M> queryParameters)
Deletes objects that match the given criteria.long
ConcurrentHashMapKeycloakTransaction. delete(QueryParameters<M> queryParameters)
long
ConcurrentHashMapStorage. delete(QueryParameters<M> queryParameters)
default boolean
ConcurrentHashMapCrudOperations. exists(QueryParameters<M> queryParameters)
Returnstrue
if at least one object is satisfying givencriteria
from the storage.long
ConcurrentHashMapCrudOperations. getCount(QueryParameters<M> queryParameters)
Returns the number of objects satisfying givencriteria
from the storage.long
ConcurrentHashMapKeycloakTransaction. getCount(QueryParameters<M> queryParameters)
long
ConcurrentHashMapStorage. getCount(QueryParameters<M> queryParameters)
Stream<V>
ConcurrentHashMapCrudOperations. read(QueryParameters<M> queryParameters)
Returns stream of objects satisfying givencriteria
from the storage.Stream<V>
ConcurrentHashMapKeycloakTransaction. read(QueryParameters<M> queryParameters)
Returns the stream of records that match given criteria and includes changes made in this transaction, i.e.Stream<V>
ConcurrentHashMapStorage. read(QueryParameters<M> queryParameters)
Stream<MapSingleUseObjectEntity>
SingleUseObjectConcurrentHashMapStorage. read(QueryParameters<SingleUseObjectValueModel> queryParameters)
-
Uses of QueryParameters in org.keycloak.models.map.storage.file
Methods in org.keycloak.models.map.storage.file with parameters of type QueryParameters Modifier and Type Method Description long
FileMapStorage.Crud. delete(QueryParameters<M> queryParameters)
long
FileMapStorage.Crud. getCount(QueryParameters<M> queryParameters)
Stream<V>
FileMapStorage.Crud. read(QueryParameters<M> queryParameters)
-
Uses of QueryParameters in org.keycloak.models.map.storage.hotRod
Methods in org.keycloak.models.map.storage.hotRod with parameters of type QueryParameters Modifier and Type Method Description long
HotRodMapStorage. delete(QueryParameters<M> queryParameters)
long
HotRodMapStorage. getCount(QueryParameters<M> queryParameters)
Stream<V>
HotRodMapStorage. read(QueryParameters<M> queryParameters)
Stream<HotRodSingleUseObjectEntityDelegate>
SingleUseObjectHotRodMapStorage. read(QueryParameters<SingleUseObjectValueModel> queryParameters)
-
Uses of QueryParameters in org.keycloak.models.map.storage.hotRod.transaction
Methods in org.keycloak.models.map.storage.hotRod.transaction with parameters of type QueryParameters Modifier and Type Method Description long
NoActionHotRodTransactionWrapper. delete(QueryParameters<M> queryParameters)
long
NoActionHotRodTransactionWrapper. getCount(QueryParameters<M> queryParameters)
Stream<V>
NoActionHotRodTransactionWrapper. read(QueryParameters<M> queryParameters)
-
Uses of QueryParameters in org.keycloak.models.map.storage.hotRod.userSession
Methods in org.keycloak.models.map.storage.hotRod.userSession with parameters of type QueryParameters Modifier and Type Method Description long
HotRodUserSessionTransaction. delete(QueryParameters<UserSessionModel> queryParameters)
Stream<MapUserSessionEntity>
HotRodUserSessionTransaction. read(QueryParameters<UserSessionModel> queryParameters)
-
Uses of QueryParameters in org.keycloak.models.map.storage.jpa
Methods in org.keycloak.models.map.storage.jpa with parameters of type QueryParameters Modifier and Type Method Description long
JpaMapKeycloakTransaction. delete(QueryParameters<M> queryParameters)
long
JpaMapKeycloakTransaction. getCount(QueryParameters<M> queryParameters)
Stream<E>
JpaMapKeycloakTransaction. read(QueryParameters<M> queryParameters)
-
Uses of QueryParameters in org.keycloak.models.map.storage.ldap
Methods in org.keycloak.models.map.storage.ldap with parameters of type QueryParameters Modifier and Type Method Description long
LdapMapKeycloakTransaction. delete(QueryParameters<M> queryParameters)
long
LdapMapKeycloakTransaction. getCount(QueryParameters<M> queryParameters)
-
Uses of QueryParameters in org.keycloak.models.map.storage.ldap.role
Methods in org.keycloak.models.map.storage.ldap.role with parameters of type QueryParameters Modifier and Type Method Description Stream<MapRoleEntity>
LdapRoleMapKeycloakTransaction. read(QueryParameters<RoleModel> queryParameters)
-