AuthImplementation

@Singleton
class AuthImplementation @Inject constructor(basicAuthCredentials: BasicAuthCredentials, accessTokenCredentials: AccessTokenCredentials) : AuthInterface

Implementation of the AuthInterface for managing authentication credentials.

This class handles setting and clearing basic authentication and access token credentials.

Parameters

basicAuthCredentials

The credentials for basic authentication.

accessTokenCredentials

The credentials for access token authentication.

Constructors

Link copied to clipboard
@Inject
constructor(basicAuthCredentials: BasicAuthCredentials, accessTokenCredentials: AccessTokenCredentials)

Functions

Link copied to clipboard
open override fun clearCredentials()

Clears all authentication credentials.

Link copied to clipboard
open override fun hasBasicAuth(): Boolean

Checks if basic authentication credentials are set.

Link copied to clipboard
open override fun hasValidAccessToken(): Boolean

Checks if the access token is set and valid.

Link copied to clipboard
open override fun setAccessTokenCredentials(accessToken: String)

Sets the access token credentials.

Link copied to clipboard
open override fun setBasicAuthCredentials(apiUserId: String, apiKey: String)

Sets the basic authentication credentials.