Uses of Class
org.keycloak.models.map.storage.QueryParameters
-
Packages that use QueryParameters Package Description org.keycloak.models.map.events org.keycloak.models.map.storage org.keycloak.models.map.storage.chm -
-
Uses of QueryParameters in org.keycloak.models.map.events
Constructor parameters in org.keycloak.models.map.events with type arguments of type QueryParameters Constructor Description MapAdminEventQuery(Function<QueryParameters<AdminEvent>,Stream<AdminEvent>> resultProducer)MapAuthEventQuery(Function<QueryParameters<Event>,Stream<Event>> resultProducer) -
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 toQueryParametersstatic <M> QueryParameters<M>QueryParameters. withCriteria(DefaultModelCriteria<M> mcb)Creates a newQueryParametersinstance initialized withModelCriteriaBuilderMethods in org.keycloak.models.map.storage with parameters of type QueryParameters Modifier and Type Method Description longMapKeycloakTransaction. delete(QueryParameters<M> queryParameters)Instructs this transaction to remove values (identified bymcbfilter) from the underlying store on commit.longMapKeycloakTransaction. 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 longConcurrentHashMapCrudOperations. delete(QueryParameters<M> queryParameters)Deletes objects that match the given criteria.longConcurrentHashMapKeycloakTransaction. delete(QueryParameters<M> queryParameters)longConcurrentHashMapStorage. delete(QueryParameters<M> queryParameters)longConcurrentHashMapCrudOperations. getCount(QueryParameters<M> queryParameters)Returns the number of objects satisfying givencriteriafrom the storage.longConcurrentHashMapKeycloakTransaction. getCount(QueryParameters<M> queryParameters)longConcurrentHashMapStorage. getCount(QueryParameters<M> queryParameters)Stream<V>ConcurrentHashMapCrudOperations. read(QueryParameters<M> queryParameters)Returns stream of objects satisfying givencriteriafrom 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)
-