Uses of Class
org.forgerock.am.cts.api.filter.TokenFilter
-
Packages that use TokenFilter Package Description org.forgerock.am.cts org.forgerock.am.cts.adapters org.forgerock.am.cts.api org.forgerock.am.cts.api.filter org.forgerock.am.cts.queue -
-
Uses of TokenFilter in org.forgerock.am.cts
Methods in org.forgerock.am.cts with parameters of type TokenFilter Modifier and Type Method Description void
CTSPersistentStore. addContinuousQueryListener(ContinuousQueryListener listener, TokenFilter filter)
Performs a continuous query against the persistent store using the provided TokenFilter.default Collection<PartialToken>
CTSPersistentStore. attributeQuery(TokenFilter tokenFilter)
Performs a partial Token query against the store synchronously.Collection<PartialToken>
CTSPersistentStore. attributeQuery(TokenFilter tokenFilter, Options options)
Performs a partial Token query against the store synchronously.default Promise<Collection<PartialToken>,CoreTokenException>
CTSPersistentStore. attributeQueryAsync(TokenFilter tokenFilter)
Performs a partial Token query against the store synchronously.Promise<Collection<PartialToken>,CoreTokenException>
CTSPersistentStore. attributeQueryAsync(TokenFilter tokenFilter, Options options)
Performs a partial Token query against the store synchronously.default void
CTSPersistentStore. deleteOnQueryAsync(TokenFilter tokenFilter)
Performs an asynchronous query against the persistent store using the provided TokenFilter and then deletes the matching tokens from the store.Promise<Collection<PartialToken>,CoreTokenException>
CTSPersistentStore. deleteOnQueryAsync(TokenFilter tokenFilter, Options options)
Performs an asynchronous query against the persistent store using the provided TokenFilter and then deletes the matching tokens from the store.default Collection<Token>
CTSPersistentStore. query(TokenFilter filter)
Performs a synchronous query against the persistent store using the provided TokenFilter.Collection<Token>
CTSPersistentStore. query(TokenFilter filter, Options options)
Performs a synchronous query against the persistent store using the provided TokenFilter.void
CTSPersistentStore. removeContinuousQueryListener(ContinuousQueryListener listener, TokenFilter filter)
Removes aContinuousQueryListener
from a specifiedTokenFilter
.void
CTSPersistentStore. stopContinuousQuery(TokenFilter filter)
Removes allContinuousQueryListener
s and stops aContinuousQuery
generated for a specifiedTokenFilter
. -
Uses of TokenFilter in org.forgerock.am.cts.adapters
Methods in org.forgerock.am.cts.adapters that return TokenFilter Modifier and Type Method Description TokenFilter
JavaBeanAdapter. toTokenQuery(QueryFilter<String> filter)
Use the bean mappings that have been parsed to turn a query keyed by bean property names into a query keyed by token property names. -
Uses of TokenFilter in org.forgerock.am.cts.api
Fields in org.forgerock.am.cts.api with type parameters of type TokenFilter Modifier and Type Field Description static Option<TokenFilter>
CTSOptions. ASSERTION_REQUEST_OPTION
Signals the CTS to perform an assertion using the providedTokenFilter
before performing the requested operation.Methods in org.forgerock.am.cts.api with parameters of type TokenFilter Modifier and Type Method Description Collection<PartialToken>
TokenStorageAdapter. partialQuery(TokenFilter query, Options options)
Performs a partial query using the provided filter.Collection<Token>
TokenStorageAdapter. query(TokenFilter query, Options options)
Performs a full-token query using the provided filter.ContinuousQuery
TokenStorageAdapter. startContinuousQuery(TokenFilter filter, ContinuousQueryListener listener)
Performs a continuous query using the provided filter. -
Uses of TokenFilter in org.forgerock.am.cts.api.filter
Methods in org.forgerock.am.cts.api.filter that return TokenFilter Modifier and Type Method Description TokenFilter
TokenFilterBuilder. build()
TokenFilter
TokenFilterBuilder.FilterAttributeBuilder. build()
-
Uses of TokenFilter in org.forgerock.am.cts.queue
Methods in org.forgerock.am.cts.queue with parameters of type TokenFilter Modifier and Type Method Description void
TaskDispatcher. continuousQuery(ContinuousQueryListener listener, TokenFilter tokenFilter)
Perform a continuous query against the persistent store and signal the results to the providedContinuousQueryListener
.Promise<Collection<PartialToken>,CoreTokenException>
TaskDispatcher. partialQuery(TokenFilter tokenFilter, Options options)
Perform a query against the persistent store and signal the results to the provided ResultHandler.Promise<Collection<Token>,CoreTokenException>
TaskDispatcher. query(TokenFilter tokenFilter, Options options)
Perform a query against the persistent store and signal the results to the provided ResultHandler.void
TaskDispatcher. removeContinuousQueryListener(ContinuousQueryListener listener, TokenFilter tokenFilter)
Removes the suppliedContinuousQueryListener
from the query which is operating the suppliedTokenFilter
.void
TaskDispatcher. stopContinuousQuery(TokenFilter tokenFilter)
Stops aContinuousQuery
having removed all itsContinuousQueryListener
s.
-