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.createUser
(String loginId, String clientName) Stores a new user record in the users store's database.void
IAuthStoreService.createUser
(String loginId, String clientName) Stores a new user record in the users store's database.void
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.void
IAuthStore.deleteUser
(IUser user) void
IAuthStoreService.deleteUser
(IUser user) IAuthStore.getAllUsers()
Returns a list of all the users using the system.IAuthStoreService.getAllUsers()
Returns a list of all the users using the system.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.Retrieves a user record in the users store's database.Retrieves a user record in the users database.IAuthStore.getUserByLoginId
(String loginId) Retrieves a user record in the users store's database.IAuthStoreService.getUserByLoginId
(String loginId) Retrieves a user record in the users database.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.IAuthStore.updateUser
(IUser user) Updates a user record in the users store's database.IAuthStoreService.updateUser
(IUser user) Updates a user record in the users store's database.