org.alfresco.mobile.android.api.session.authentication.OAuthAuthenticationProvider
This section describes the OAuthAuthenticationProvider interface.
The OAuthAuthenticationProvider interface defines methods required by OAuth2 implementations.
Interface declaration
public interface OAuthAuthenticationProvider extends AuthenticationProvider
| Inherits from | Implements |
|---|---|
| AuthenticationProvider | None |
Definition
public interface OAuthAuthenticationProvider extends AuthenticationProvider
{
String getAccessToken();
String getRefreshToken();
OAuthData refreshToken(AlfrescoSession session);
void setOAuthData(OAuthData data);
OAuthData getOAuthData();
}