Uses of Class
dev.galasa.framework.spi.auth.AuthStoreException
Package
Description
Galasa Framework - Framework setup routines
Galasa Framework - SPI
-
Uses of AuthStoreException in dev.galasa.framework
-
Uses of AuthStoreException in dev.galasa.framework.spi
Modifier and TypeMethodDescriptionvoid
IApiServerInitialisation.registerAuthStore
(@NotNull IAuthStore authStore) Register an Auth Store Service, which allows the framework to retrieve user and token information. -
Uses of AuthStoreException in dev.galasa.framework.spi.auth
Modifier and TypeMethodDescriptionvoid
IAuthStore.deleteToken
(String tokenId) Deletes an existing token record from the auth store's tokens database.void
IAuthStoreService.deleteToken
(String tokenId) Deletes an existing token in the auth store's tokens database.Gets an token record given its ID from the auth store.IAuthStore.getTokens()
Returns a list of all the token records stored in the auth store.IAuthStoreService.getTokens()
Returns a list of all the auth token records stored in the auth store.IAuthStore.getTokensByLoginId
(String loginId) Returns a list of token records stored in the auth store that match a given login ID.IAuthStoreService.getTokensByLoginId
(String loginId) Returns a list of token records stored in the auth store that match a given login ID.void
IAuthStoreRegistration.initialise
(@NotNull IApiServerInitialisation frameworkInitialisation) void
IAuthStore.shutdown()
void
IAuthStore.storeToken
(String clientId, String description, IInternalUser owner) Stores a new token record in the auth store's tokens database.void
IAuthStoreService.storeToken
(String clientId, String description, IInternalUser owner) Stores a new token in the auth store's tokens database.