Methods Summary |
---|
public int | describeContents()
return 0;
|
public void | onError(int errorCode, java.lang.String errorMessage)
if (Log.isLoggable(TAG, Log.VERBOSE)) {
Log.v(TAG, "AccountAuthenticatorResponse.onError: " + errorCode + ", " + errorMessage);
}
try {
mAccountAuthenticatorResponse.onError(errorCode, errorMessage);
} catch (RemoteException e) {
// this should never happen
}
|
public void | onRequestContinued()
if (Log.isLoggable(TAG, Log.VERBOSE)) {
Log.v(TAG, "AccountAuthenticatorResponse.onRequestContinued");
}
try {
mAccountAuthenticatorResponse.onRequestContinued();
} catch (RemoteException e) {
// this should never happen
}
|
public void | onResult(android.os.Bundle result)
if (Log.isLoggable(TAG, Log.VERBOSE)) {
result.keySet(); // force it to be unparcelled
Log.v(TAG, "AccountAuthenticatorResponse.onResult: "
+ AccountManager.sanitizeResult(result));
}
try {
mAccountAuthenticatorResponse.onResult(result);
} catch (RemoteException e) {
// this should never happen
}
|
public void | writeToParcel(android.os.Parcel dest, int flags)
dest.writeStrongBinder(mAccountAuthenticatorResponse.asBinder());
|