List of usage examples for android.accounts AbstractAccountAuthenticator subclass-usage
From source file pt.up.mobile.authenticator.Authenticator.java
/**
* This class is an implementation of AbstractAccountAuthenticator for
* authenticating accounts in the com.example.android.samplesync domain. The
* interesting thing that this class demonstrates is the use of authTokens as
* part of the authentication process. In the account setup UI, the user enters
* their username and password. But for our subsequent calls off to the service
From source file com.rukman.emde.smsgroups.authenticator.GMSAuthenticator.java
public class GMSAuthenticator extends AbstractAccountAuthenticator { static final String TAG = "GMSAuthenticator"; private Context mContext; public GMSAuthenticator(Context context) {
From source file org.klnusbaum.udj.auth.Authenticator.java
import org.klnusbaum.udj.exceptions.APIVersionException; /** * Class used to authenticate with the UDJ server */ public class Authenticator extends AbstractAccountAuthenticator {
From source file edu.mit.mobile.android.locast.accounts.AbsLocastAuthenticator.java
/** * This class is an implementation of AbstractAccountAuthenticator for * authenticating accounts in the Locast domain */ public abstract class AbsLocastAuthenticator extends AbstractAccountAuthenticator { private final static String TAG = AbsLocastAuthenticator.class.getSimpleName();
From source file com.clearcenter.mobile_demo.mdAuthenticator.java
class mdAuthenticator extends AbstractAccountAuthenticator { // The tag used to log to adb console. private static final String TAG = "mdAuthenticator"; // Authentication Service context private final Context ctx;
From source file edu.mit.mobile.android.locast.accounts.Authenticator.java
/** * This class is an implementation of AbstractAccountAuthenticator for * authenticating accounts in the Locast domain */ public class Authenticator extends AbstractAccountAuthenticator { private final static String TAG = Authenticator.class.getSimpleName();
From source file org.ohmage.auth.Authenticator.java
/** * This class is an implementation of AbstractAccountAuthenticator for * authenticating ohmage accounts */ public class Authenticator extends AbstractAccountAuthenticator {
From source file fr.unix_experience.owncloud_sms.authenticators.OwnCloudAuthenticator.java
public class OwnCloudAuthenticator extends AbstractAccountAuthenticator { // Simple constructor public OwnCloudAuthenticator(Context context) { super(context); _context = context; }
From source file eu.masconsult.bgbanking.accounts.AccountAuthenticator.java
/** */ public class AccountAuthenticator extends AbstractAccountAuthenticator { private static final String TAG = BankingApplication.TAG + "AcAuth"; private Context context;
From source file com.manning.androidhacks.hack023.authenticator.Authenticator.java
public class Authenticator extends AbstractAccountAuthenticator { public String[] authoritiesToSync = { TodoContentProvider.AUTHORITY }; private final Context mContext; public Authenticator(Context context) { super(context);