Java 类android.accounts.AccountAuthenticatorResponse 实例源码

项目:LaravelNewsApp    文件:Authenticator.java   
@Override
public Bundle addAccount(
        AccountAuthenticatorResponse r,
        String s,
        String s2,
        String[] strings,
        Bundle bundle) throws NetworkErrorException {
    return null;
}
项目:LaravelNewsApp    文件:Authenticator.java   
@Override
public Bundle confirmCredentials(
        AccountAuthenticatorResponse r,
        Account account,
        Bundle bundle) throws NetworkErrorException {
    return null;
}
项目:LaravelNewsApp    文件:Authenticator.java   
@Override
public Bundle getAuthToken(
        AccountAuthenticatorResponse r,
        Account account,
        String s,
        Bundle bundle) throws NetworkErrorException {
    throw new UnsupportedOperationException();
}
项目:LaravelNewsApp    文件:Authenticator.java   
@Override
public Bundle updateCredentials(
        AccountAuthenticatorResponse r,
        Account account,
        String s, Bundle bundle) throws NetworkErrorException {
    throw new UnsupportedOperationException();
}
项目:FBEventSync    文件:Authenticator.java   
@Override
public Bundle addAccount(AccountAuthenticatorResponse response, String accountType,
                         String authTokenType, String[] requiredFeatures, Bundle options) throws NetworkErrorException {
    final Intent intent = new Intent(mContext, AuthenticatorActivity.class);
    intent.setAction(Intent.ACTION_VIEW);
    intent.putExtra(AccountManager.KEY_ACCOUNT_TYPE, accountType);
    intent.putExtra(AuthenticatorActivity.ARG_AUTH_TOKEN_TYPE, authTokenType);
    intent.putExtra(AuthenticatorActivity.ARG_IS_ADDING_NEW_ACCOUNT, true);
    intent.putExtra(AccountManager.KEY_ACCOUNT_AUTHENTICATOR_RESPONSE, response);

    final Bundle bundle = new Bundle();
    bundle.putParcelable(AccountManager.KEY_INTENT, intent);
    return bundle;
}
项目:FBEventSync    文件:Authenticator.java   
@Override
public Bundle hasFeatures(AccountAuthenticatorResponse response, Account account,
                          String[] features) throws NetworkErrorException {
    final Bundle result = new Bundle();
    result.putBoolean(AccountManager.KEY_BOOLEAN_RESULT, false);
    return result;
}
项目:PeSanKita-android    文件:AccountAuthenticatorService.java   
@Override
public Bundle addAccount(AccountAuthenticatorResponse response, String accountType, String authTokenType,
                         String[] requiredFeatures, Bundle options)
    throws NetworkErrorException
{
  return null;
}
项目:EasyAppleSyncAdapter    文件:ICalAuthenticator.java   
@Override
public Bundle addAccount(AccountAuthenticatorResponse response, String accountType, String authTokenType,
                         String[] requiredFeatures, Bundle options) throws NetworkErrorException {
    final Intent intent = new Intent(context, loginActivity);
    intent.putExtra(GlobalConstant.ACCOUNT_TYPE, accountType);
    intent.putExtra(GlobalConstant.AUTH_TYPE, authTokenType);
    intent.putExtra(IS_ADDING_NEW_ACCOUNT, true);
    intent.putExtra(AccountManager.KEY_ACCOUNT_AUTHENTICATOR_RESPONSE, response);
    final Bundle bundle = new Bundle();
    bundle.putParcelable(AccountManager.KEY_INTENT, intent);
    return bundle;
}
项目:Phony-Android    文件:PhonyAuthenticator.java   
@Override
public Bundle addAccount(AccountAuthenticatorResponse response, String accountType, String authTokenType, String[] requiredFeatures, Bundle options) throws NetworkErrorException {
    Log.d(TAG, "addAccount: called.");

    final Intent intent = new Intent(mContext, AuthenticatorActivity.class);
    intent.putExtra(AccountManager.KEY_ACCOUNT_TYPE, accountType);
    intent.putExtra(AuthenticatorActivity.ARG_IS_ADDING_NEW_ACCOUNT, true);
    intent.putExtra(AccountManager.KEY_ACCOUNT_AUTHENTICATOR_RESPONSE, response);

    final Bundle bundle = new Bundle();
    bundle.putParcelable(AccountManager.KEY_INTENT, intent);
    return bundle;
}
项目:react-native-sync-adapter    文件:DummyAuthenticator.java   
@Override
public Bundle addAccount(
        AccountAuthenticatorResponse r,
        String s,
        String s2,
        String[] strings,
        Bundle bundle) throws NetworkErrorException {
    return null;
}
项目:react-native-sync-adapter    文件:DummyAuthenticator.java   
@Override
public Bundle confirmCredentials(
        AccountAuthenticatorResponse r,
        Account account,
        Bundle bundle) throws NetworkErrorException {
    return null;
}
项目:react-native-sync-adapter    文件:DummyAuthenticator.java   
@Override
public Bundle getAuthToken(
        AccountAuthenticatorResponse r,
        Account account,
        String s,
        Bundle bundle) throws NetworkErrorException {
    throw new UnsupportedOperationException();
}
项目:Udacity_Sunshine    文件:SunshineAuthenticator.java   
@Override
public Bundle addAccount(
        AccountAuthenticatorResponse r,
        String s,
        String s2,
        String[] strings,
        Bundle bundle) throws NetworkErrorException {
    return null;
}
项目:Udacity_Sunshine    文件:SunshineAuthenticator.java   
@Override
public Bundle confirmCredentials(
        AccountAuthenticatorResponse r,
        Account account,
        Bundle bundle) throws NetworkErrorException {
    return null;
}
项目:FuelUp    文件:Authenticator.java   
@Override
public Bundle addAccount(
        AccountAuthenticatorResponse r,
        String s,
        String s2,
        String[] strings,
        Bundle bundle) throws NetworkErrorException {
    return null;
}
项目:FuelUp    文件:Authenticator.java   
@Override
public Bundle confirmCredentials(
        AccountAuthenticatorResponse r,
        Account account,
        Bundle bundle) throws NetworkErrorException {
    return null;
}
项目:FuelUp    文件:Authenticator.java   
@Override
public Bundle getAuthToken(
        AccountAuthenticatorResponse r,
        Account account,
        String s,
        Bundle bundle) throws NetworkErrorException {
    throw new UnsupportedOperationException();
}
项目:EasyAppleSyncAdapter    文件:ICalAuthenticator.java   
@Override
public Bundle hasFeatures(AccountAuthenticatorResponse response, Account account, String[] features)
        throws NetworkErrorException {
    final Bundle result = new Bundle();
    result.putBoolean(KEY_BOOLEAN_RESULT, false);
    return result;
}
项目:EasyAppleSyncAdapter    文件:ICalAuthenticator.java   
@Override
public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account, String authTokenType,
                           Bundle options) throws NetworkErrorException {
    final AccountManager am = AccountManager.get(context);
    String authToken = am.peekAuthToken(account, authTokenType);

    // get new token if there is no one
    if (TextUtils.isEmpty(authToken)) {
        String password = am.getPassword(account);
        if (password != null) {
            try {
                password = Crypto.armorDecrypt(password, context);
                authToken = serverHandler.userSignIn(account.name, password);
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    }

    // there is new token, return it
    if (!TextUtils.isEmpty(authToken)) {
        final Bundle result = new Bundle();
        result.putString(AccountManager.KEY_ACCOUNT_NAME, account.name);
        result.putString(AccountManager.KEY_ACCOUNT_TYPE, account.type);
        result.putString(AccountManager.KEY_AUTHTOKEN, authToken);
        return result;
    }

    // no token and no password, show login screen
    final Intent intent = new Intent(context, loginActivity);
    intent.putExtra(AccountManager.KEY_ACCOUNT_AUTHENTICATOR_RESPONSE, response);
    intent.putExtra(GlobalConstant.ACCOUNT_TYPE, account.type);
    intent.putExtra(GlobalConstant.ACCOUNT_NAME, account.name);
    intent.putExtra(IS_ADDING_NEW_ACCOUNT, false);
    final Bundle bundle = new Bundle();
    bundle.putParcelable(AccountManager.KEY_INTENT, intent);
    return bundle;
}
项目:ChatExchange-old    文件:Authenticator.java   
/**
 * Return a bundle with the information necessary to create a new account
 */
private Bundle newAccount(AccountAuthenticatorResponse response)
{
    Intent intent = new Intent(mContext, AuthenticatorActivity.class);
    intent.putExtra(AccountManager.KEY_ACCOUNT_AUTHENTICATOR_RESPONSE, response);
    Bundle bundle = new Bundle();
    bundle.putParcelable(AccountManager.KEY_INTENT, intent);
    return bundle;
}
项目:ChatExchange-old    文件:Authenticator.java   
@Override
public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account, String authTokenType, Bundle options) throws NetworkErrorException
{
    AccountManager accountManager = AccountManager.get(mContext);
    String authToken = accountManager.peekAuthToken(account, authTokenType);
    if (!authToken.isEmpty())
    {
        Bundle bundle = new Bundle();
        bundle.putString(AccountManager.KEY_ACCOUNT_NAME, account.name);
        bundle.putString(AccountManager.KEY_AUTHTOKEN, authToken);
        return bundle;
    }
    return newAccount(response);
}
项目:Cable-Android    文件:AccountAuthenticatorService.java   
@Override
public Bundle addAccount(AccountAuthenticatorResponse response, String accountType, String authTokenType,
                         String[] requiredFeatures, Bundle options)
    throws NetworkErrorException
{
  return null;
}
项目:leoapp-sources    文件:StubAuthenticator.java   
@Override
public Bundle confirmCredentials(
        AccountAuthenticatorResponse r,
        Account account,
        Bundle bundle) throws NetworkErrorException {
    return null;
}
项目:leoapp-sources    文件:StubAuthenticator.java   
@Override
public Bundle getAuthToken(
        AccountAuthenticatorResponse r,
        Account account,
        String s,
        Bundle bundle) throws NetworkErrorException {
    throw new UnsupportedOperationException();
}
项目:leoapp-sources    文件:StubAuthenticator.java   
@Override
public Bundle updateCredentials(
        AccountAuthenticatorResponse r,
        Account account,
        String s,
        Bundle bundle) throws NetworkErrorException {
    throw new UnsupportedOperationException();
}
项目:TVGuide    文件:TvGuideAuthenticator.java   
@Override
public Bundle confirmCredentials(
        AccountAuthenticatorResponse r,
        Account account,
        Bundle bundle) throws NetworkErrorException {
    return null;
}
项目:TVGuide    文件:TvGuideAuthenticator.java   
@Override
public Bundle getAuthToken(
        AccountAuthenticatorResponse r,
        Account account,
        String s,
        Bundle bundle) throws NetworkErrorException {
    throw new UnsupportedOperationException();
}
项目:TVGuide    文件:TvGuideAuthenticator.java   
@Override
public Bundle updateCredentials(
        AccountAuthenticatorResponse r,
        Account account,
        String s, Bundle bundle) throws NetworkErrorException {
    throw new UnsupportedOperationException();
}
项目:LaravelNewsApp    文件:Authenticator.java   
@Override
public Bundle editProperties(
        AccountAuthenticatorResponse r, String s) {
    throw new UnsupportedOperationException();
}
项目:LaravelNewsApp    文件:Authenticator.java   
@Override
public Bundle hasFeatures(
        AccountAuthenticatorResponse r,
        Account account, String[] strings) throws NetworkErrorException {
    throw new UnsupportedOperationException();
}
项目:FBEventSync    文件:Authenticator.java   
@Override
public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account,
                                 Bundle options) throws NetworkErrorException {
    Log.d(TAG, "Confirm credentials");
    return null;
}
项目:simplest-sync-adapter    文件:StubAuthenticator.java   
@Override
public Bundle editProperties(AccountAuthenticatorResponse accountAuthenticatorResponse,
                             String s) {
    throw new UnsupportedOperationException();
}
项目:FBEventSync    文件:Authenticator.java   
@Override
public Bundle editProperties(AccountAuthenticatorResponse response, String accountType) {
    Log.d(TAG, "Edit properties");
    return null;
}
项目:PeSanKita-android    文件:AccountAuthenticatorService.java   
public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account, Bundle options) {
  return null;
}
项目:simplest-sync-adapter    文件:StubAuthenticator.java   
@Override
public Bundle confirmCredentials(AccountAuthenticatorResponse accountAuthenticatorResponse,
                                 Account account, Bundle bundle)
        throws NetworkErrorException {
    return null;
}
项目:PeSanKita-android    文件:AccountAuthenticatorService.java   
@Override
public Bundle hasFeatures(AccountAuthenticatorResponse response, Account account, String[] features)
    throws NetworkErrorException {
  return null;
}
项目:PeSanKita-android    文件:AccountAuthenticatorService.java   
@Override
public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account, String authTokenType,
                                Bundle options) {
  return null;
}
项目:airgram    文件:AuthenticatorService.java   
@Override
public Bundle addAccount(AccountAuthenticatorResponse response, String accountType, String authTokenType, String[] requiredFeatures, Bundle options)
        throws NetworkErrorException {
    return null;
}
项目:airgram    文件:AuthenticatorService.java   
@Override
public Bundle getAccountRemovalAllowed(AccountAuthenticatorResponse response, Account account) throws NetworkErrorException {
    return super.getAccountRemovalAllowed(response, account);
}
项目:gigreminder    文件:Authenticator.java   
@Override
public Bundle hasFeatures(AccountAuthenticatorResponse response, Account account,
                          String[] features) throws NetworkErrorException {
    throw new UnsupportedOperationException();
}