Home | History | Annotate | Download | only in exchange

Lines Matching refs:account

25 import com.android.emailcommon.provider.Account;
63 // The value will be "0" without an account
69 // With an account, but null security key, the header's value should be "0"
70 Account account = new Account();
71 account.mSecuritySyncKey = null;
72 svc.mAccount = account;
78 // With an account and security key, the header's value should be the security key
79 account.mSecuritySyncKey = "key";
80 svc.mAccount = account;