AuthInterface

interface AuthInterface

Interface for managing authentication credentials.

This interface defines methods for setting, clearing, and checking the status of basic authentication and access token credentials.

Inheritors

Functions

Link copied to clipboard
abstract fun clearCredentials()

Clear all authentication credentials.

Link copied to clipboard
abstract fun hasBasicAuth(): Boolean

Check if basic auth credentials are set.

Link copied to clipboard

Check if access token is set and valid.

Link copied to clipboard
abstract fun setAccessTokenCredentials(accessToken: String)

Set the access token credentials.

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

Set the basic authentication credentials.