Search in sources :

Example 1 with SamlWebViewDialog

use of com.owncloud.android.ui.dialog.SamlWebViewDialog in project android by owncloud.

the class AuthenticatorActivity method startSamlBasedFederatedSingleSignOnAuthorization.

/**
     * Starts the Web Single Sign On flow to get access to the root folder
     * in the server.
     */
private void startSamlBasedFederatedSingleSignOnAuthorization() {
    /// be gentle with the user
    mAuthStatusIcon = R.drawable.progress_small;
    mAuthStatusText = getResources().getString(R.string.auth_connecting_auth_server);
    showAuthStatus();
    /// Show SAML-based SSO web dialog
    String targetUrl = mServerInfo.mBaseUrl + AccountUtils.getWebdavPath(mServerInfo.mVersion, mAuthTokenType);
    SamlWebViewDialog dialog = SamlWebViewDialog.newInstance(targetUrl, targetUrl);
    dialog.show(getSupportFragmentManager(), SAML_DIALOG_TAG);
}
Also used : SamlWebViewDialog(com.owncloud.android.ui.dialog.SamlWebViewDialog)

Aggregations

SamlWebViewDialog (com.owncloud.android.ui.dialog.SamlWebViewDialog)1