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 PartialToken Modifier and Type Method Description default PartialToken
CTSPersistentStore. delete(String tokenId)
Delete the Token from the store synchronously based on its id.PartialToken
CTSPersistentStore. delete(String tokenId, Options options)
Delete the Token from the store synchronously based on its id.default PartialToken
CTSPersistentStore. delete(Token token)
Delete the Token from the store synchronously.default PartialToken
CTSPersistentStore. patch(String tokenId, TokenType tokenType, TokenModifications modifications)
Patches a token which already exists in the persistent store with modifications.PartialToken
CTSPersistentStore. patch(String tokenId, TokenType tokenType, TokenModifications modifications, Options options)
Patches a token which already exists in the persistent store with modifications.Methods in org.forgerock.am.cts that return types with arguments of type PartialToken Modifier and Type Method Description 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 Promise<PartialToken,CoreTokenException>
CTSPersistentStore. deleteAsync(String tokenId)
Delete the Token from the store asynchronously based on its id.Promise<PartialToken,CoreTokenException>
CTSPersistentStore. deleteAsync(String tokenId, Options options)
Delete the Token from the store asynchronously based on its id.default Promise<PartialToken,CoreTokenException>
CTSPersistentStore. deleteAsync(Token token)
Deletes the Token from the store asynchronously.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 Promise<PartialToken,CoreTokenException>
CTSPersistentStore. patchAsync(String tokenId, TokenType tokenType, TokenModifications modifications)
Asynchronously patches a token which already exists in the persistent store with modifications.Promise<PartialToken,CoreTokenException>
CTSPersistentStore. patchAsync(String tokenId, TokenType tokenType, TokenModifications modifications, Options options)
Asynchronously patches a token which already exists in the persistent store with modifications. -
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
Methods in org.forgerock.am.cts.queue that return types with arguments of type PartialToken Modifier and Type Method Description Promise<PartialToken,CoreTokenException>
TaskDispatcher. delete(String tokenId, Options options)
The Token ID, for a specific revision of the token, to delete from the persistent store.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<PartialToken,CoreTokenException>
TaskDispatcher. patch(String tokenId, TokenModifications modifications, Options options)
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>
TokenDeletionStrategy. delete(String tokenId, TokenType tokenType, long expiryTime)
Delete the token from the CTS persistence store.
-