Package com.okta.authfoundation.credential

Types

Link copied to clipboard
class Credential

Convenience object that wraps a Token, providing methods and properties for interacting with credential resources.

Link copied to clipboard
class CredentialDataSource

Responsible for managing Credential instances.

Link copied to clipboard
enum RevokeTokenType : Enum<RevokeTokenType>

The possible token types that can be revoked.

Link copied to clipboard
class Token(    val tokenType: String,     val expiresIn: Int,     val accessToken: String,     val scope: String?,     val refreshToken: String?,     val idToken: String?,     val deviceSecret: String?,     val issuedTokenType: String?)

Token information representing a user's access to a resource server, including access token, refresh token, and other related information.

Link copied to clipboard
interface TokenStorage

Interface used to customize the way tokens are stored, updated, and removed throughout the lifecycle of an application.

Link copied to clipboard
enum TokenType : Enum<TokenType>

The type of token an operation should be used with.