Uses of Interface
org.forgerock.am.cts.api.query.PartialToken
-
Packages that use PartialToken Package Description org.forgerock.am.cts org.forgerock.am.cts.api org.forgerock.am.cts.api.tokens org.forgerock.am.cts.queue org.forgerock.am.cts.reaper -
-
Uses of PartialToken in org.forgerock.am.cts
Methods in org.forgerock.am.cts that return types with arguments of type PartialToken Modifier and Type Method Description 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.Method parameters in org.forgerock.am.cts with type arguments of type PartialToken Modifier and Type Method Description default void
CTSPersistentStore. attributeQueryAsync(TokenFilter tokenFilter, ResultHandler<Collection<PartialToken>,CoreTokenException> resultHandler)
Performs a partial Token query against the store synchronously.void
CTSPersistentStore. attributeQueryAsync(TokenFilter tokenFilter, Options options, ResultHandler<Collection<PartialToken>,CoreTokenException> resultHandler)
Performs a partial Token query against the store synchronously. -
Uses of PartialToken in org.forgerock.am.cts.api
Methods in org.forgerock.am.cts.api that return PartialToken Modifier and Type Method Description PartialToken
TokenStorageAdapter. delete(String tokenId, Options options)
Performs a delete against the Token ID provided.PartialToken
TokenStorageAdapter. patch(String tokenId, TokenModifications modifications, Options options)
Performs a patch against the Token ID provided.Methods in org.forgerock.am.cts.api that return types with arguments of type PartialToken Modifier and Type Method Description Collection<PartialToken>
TokenStorageAdapter. partialQuery(TokenFilter query, Options options)
Performs a partial query using the provided filter. -
Uses of PartialToken in org.forgerock.am.cts.api.tokens
Methods in org.forgerock.am.cts.api.tokens that return PartialToken Modifier and Type Method Description PartialToken
Token. toPartialToken()
Converts thisToken
into aPartialToken
containing all of the populated fields. -
Uses of PartialToken in org.forgerock.am.cts.queue
Method parameters in org.forgerock.am.cts.queue with type arguments of type PartialToken Modifier and Type Method Description void
TaskDispatcher. delete(String tokenId, ResultHandler<PartialToken,?> handler)
The Token ID to delete from the persistent store.void
TaskDispatcher. delete(String tokenId, Options options, ResultHandler<PartialToken,?> handler)
The Token ID, for a specific revision of the token, to delete from the persistent store.void
TaskDispatcher. partialQuery(TokenFilter tokenFilter, Options options, ResultHandler<Collection<PartialToken>,?> handler)
Perform a query against the persistent store and signal the results to the provided ResultHandler.void
TaskDispatcher. patch(String tokenId, TokenModifications modifications, Options options, ResultHandler<PartialToken,?> handler)
Patches a token in the persistent store. -
Uses of PartialToken in org.forgerock.am.cts.reaper
Methods in org.forgerock.am.cts.reaper that return types with arguments of type PartialToken Modifier and Type Method Description Promise<PartialToken,CoreTokenException>
PromiseResultHandler. asPromise()
Converts this result handler into a promise.Promise<PartialToken,CoreTokenException>
TokenDeletionStrategy. delete(String tokenId, TokenType tokenType, long expiryTime)
Delete the token from the CTS persistence store.
-