Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -928,7 +928,7 @@ public class AuthenticationAPIClient @VisibleForTesting(otherwise = VisibleForTe
* @param refreshToken A valid refresh token obtained as part of Auth0 authentication
* @return a request to fetch a session token
*/
internal fun fetchSessionToken(refreshToken: String): Request<SSOCredentials, AuthenticationException> {
public fun fetchSessionToken(refreshToken: String): Request<SSOCredentials, AuthenticationException> {
val params = ParameterBuilder.newBuilder()
.setClientId(clientId)
.setGrantType(ParameterBuilder.GRANT_TYPE_TOKEN_EXCHANGE)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ public abstract class BaseCredentialsManager internal constructor(

@Throws(CredentialsManagerException::class)
public abstract fun saveCredentials(credentials: Credentials)
internal abstract fun saveSsoCredentials(ssoCredentials: SSOCredentials)
public abstract fun saveSsoCredentials(ssoCredentials: SSOCredentials)
public abstract fun getCredentials(callback: Callback<Credentials, CredentialsManagerException>)
internal abstract fun getSsoCredentials(callback: Callback<SSOCredentials, CredentialsManagerException>)
public abstract fun getSsoCredentials(callback: Callback<SSOCredentials, CredentialsManagerException>)
public abstract fun getCredentials(
scope: String?,
minTtl: Int,
Expand Down Expand Up @@ -65,7 +65,7 @@ public abstract class BaseCredentialsManager internal constructor(

@JvmSynthetic
@Throws(CredentialsManagerException::class)
internal abstract suspend fun awaitSsoCredentials(): SSOCredentials
public abstract suspend fun awaitSsoCredentials(): SSOCredentials

@JvmSynthetic
@Throws(CredentialsManagerException::class)
Expand Down