StoringApiAuthenticator
An ApiAuthenticator that stores credentials after successfully authenticating.
class StoringApiAuthenticator<T : Any>(delegate: ApiAuthenticator<T>, store: CredentialsStore<T>) : ApiAuthenticator<T>
Content copied to clipboard
Parameters
delegate
An ApiAuthenticator that does the authentication.
store
A CredentialsStore for storing the credentials.
Constructors
StoringApiAuthenticator
Link copied to clipboard
fun <T : Any> StoringApiAuthenticator(delegate: ApiAuthenticator<T>, store: CredentialsStore<T>)
Content copied to clipboard