Uses of Class
org.forgerock.am.cts.exceptions.CoreTokenException
-
-
Uses of CoreTokenException in org.forgerock.am.cts
Methods in org.forgerock.am.cts that return types with arguments of type CoreTokenException Modifier and Type Method Description 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<Token,CoreTokenException>
CTSPersistentStore. createAsync(Token token)
Creates a Token in the persistent store asynchronously.Promise<Token,CoreTokenException>
CTSPersistentStore. createAsync(Token token, Options options)
Creates a Token in the persistent store asynchronously.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.default Promise<Token,CoreTokenException>
CTSPersistentStore. updateAsync(Token readState, Token updatedState)
Updates an existing Token in the store asynchronously.Promise<Token,CoreTokenException>
CTSPersistentStore. updateAsync(Token readState, Token updatedState, Options options)
Updates an existing Token in the store asynchronously.default Promise<Token,CoreTokenException>
CTSPersistentStore. upsertAsync(Token token)
Updates an existing Token in the store asynchronously.Promise<Token,CoreTokenException>
CTSPersistentStore. upsertAsync(Token token, Options options)
Updates an existing Token in the store asynchronously.Methods in org.forgerock.am.cts that throw CoreTokenException 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 Token
CTSPersistentStore. create(Token token)
Creates a Token in the persistent store synchronously.Token
CTSPersistentStore. create(Token token, Options options)
Creates a Token in the persistent store synchronously.default Promise<Token,CoreTokenException>
CTSPersistentStore. createAsync(Token token)
Creates a Token in the persistent store asynchronously.Promise<Token,CoreTokenException>
CTSPersistentStore. createAsync(Token token, Options options)
Creates a Token in the persistent store asynchronously.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 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.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 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.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.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.default Token
CTSPersistentStore. read(String tokenId)
Read a Token from the persistent store synchronously.Token
CTSPersistentStore. read(String tokenId, Options options)
Read a Token from the persistent store synchronously.void
CTSPersistentStore. removeContinuousQueryListener(ContinuousQueryListener listener, TokenFilter filter)
Removes aContinuousQueryListener
from a specifiedTokenFilter
.default Token
CTSPersistentStore. update(Token readState, Token updatedState)
Updates an existing Token in the store synchronously.Token
CTSPersistentStore. update(Token readState, Token updatedState, Options options)
Updates an existing Token in the store synchronously.default Promise<Token,CoreTokenException>
CTSPersistentStore. updateAsync(Token readState, Token updatedState)
Updates an existing Token in the store asynchronously.Promise<Token,CoreTokenException>
CTSPersistentStore. updateAsync(Token readState, Token updatedState, Options options)
Updates an existing Token in the store asynchronously.default Token
CTSPersistentStore. upsert(Token token)
Updates an existing Token in the store synchronously.Token
CTSPersistentStore. upsert(Token token, Options options)
Updates an existing Token in the store synchronously.default Promise<Token,CoreTokenException>
CTSPersistentStore. upsertAsync(Token token)
Updates an existing Token in the store asynchronously.Promise<Token,CoreTokenException>
CTSPersistentStore. upsertAsync(Token token, Options options)
Updates an existing Token in the store asynchronously. -
Uses of CoreTokenException in org.forgerock.am.cts.api.fields
Methods in org.forgerock.am.cts.api.fields that throw CoreTokenException Modifier and Type Method Description static void
CoreTokenFieldTypes. validateType(CoreTokenField field, Object value)
Validate the value matches the expected type for the given key.static void
CoreTokenFieldTypes. validateTypes(Map<CoreTokenField,Object> types)
Validate a collection of key/value mappings. -
Uses of CoreTokenException in org.forgerock.am.cts.continuous.watching
Methods in org.forgerock.am.cts.continuous.watching that throw CoreTokenException Modifier and Type Method Description void
ContinuousWatcher. addListener(T listener)
Add a listener of the supported type to this watcher.Set<ContinuousWatcher>
ContinuousWatcherDirectory. getWatchersForListener(ContinuousListener listener)
Look up a specificContinuousListener
'sContinuousWatcher
s.void
ContinuousWatcherDirectory. registerListener(ContinuousListener listener)
Register a ContinuousListener to its associated watchers. -
Uses of CoreTokenException in org.forgerock.am.cts.exceptions
Subclasses of CoreTokenException in org.forgerock.am.cts.exceptions Modifier and Type Class Description class
DeleteFailedException
Represents a failure to delete a Token from the Core Token Service. -
Uses of CoreTokenException in org.forgerock.am.cts.queue
Methods in org.forgerock.am.cts.queue that return types with arguments of type CoreTokenException Modifier and Type Method Description Promise<Token,CoreTokenException>
TaskDispatcher. create(Token token, Options options)
The CTS Token to create in the persistent store.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.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.Promise<Token,CoreTokenException>
TaskDispatcher. read(String tokenId, Options options)
The CTS Token to read from the persistent store.Promise<Token,CoreTokenException>
TaskDispatcher. update(Token readState, Token updatedState, Options options)
The CTS Token to update in the persistent store.Promise<Token,CoreTokenException>
TaskDispatcher. upsert(Token token, Options options)
The CTS Token to create or update in the persistent store.Methods in org.forgerock.am.cts.queue that throw CoreTokenException 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<Token,CoreTokenException>
TaskDispatcher. create(Token token, Options options)
The CTS Token to create in the persistent store.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.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.Promise<Token,CoreTokenException>
TaskDispatcher. read(String tokenId, Options options)
The CTS Token to read from the persistent store.Promise<Token,CoreTokenException>
TaskDispatcher. update(Token readState, Token updatedState, Options options)
The CTS Token to update in the persistent store.Promise<Token,CoreTokenException>
TaskDispatcher. upsert(Token token, Options options)
The CTS Token to create or update in the persistent store. -
Uses of CoreTokenException in org.forgerock.am.cts.reaper
Methods in org.forgerock.am.cts.reaper that return types with arguments of type CoreTokenException Modifier and Type Method Description Promise<PartialToken,CoreTokenException>
TokenDeletionStrategy. delete(String tokenId, TokenType tokenType, long expiryTime)
Delete the token from the CTS persistence store.
-